File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -13,32 +13,32 @@ jobs:
1313 - name : Checkout
1414 uses : actions/checkout@v4
1515
16- - name: Checkout C++
16+ - name : Checkout C++
1717 uses : actions/checkout@v4
1818 with :
1919 repository : apache/datasketches-cpp
2020 path : cpp
2121
22- - name: Setup Java
22+ - name : Setup Java
2323 uses : actions/setup-java@v4
2424 with :
2525 java-version : ' 17'
2626 distribution : ' temurin'
2727
28- - name: Configure C++ build
28+ - name : Configure C++ build
2929 run : cd cpp/build && cmake .. -DGENERATE=true
3030
31- - name: Build C++ unit tests
31+ - name : Build C++ unit tests
3232 run : cd cpp && cmake --build build --config Release
3333
34- - name: Run C++ tests
34+ - name : Run C++ tests
3535 run : cd cpp && cmake --build build --config Release --target test
3636
37- - name: Make dir
37+ - name : Make dir
3838 run : mkdir -p serialization_test_data/cpp_generated_files
3939
4040 - name : Copy files
4141 run : cp cpp/build/*/test/*_cpp.sk serialization_test_data/cpp_generated_files
4242
43- - name: Run Java tests
43+ - name : Run Java tests
4444 run : mvn test -P check-cpp-files
You can’t perform that action at this time.
0 commit comments