Skip to content

Commit

Permalink
Github action update
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhjp01 committed Feb 19, 2024
1 parent 89e924e commit 2fbaefb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
-DCMAKE_INSTALL_PREFIX=install
- name: Build
working-directory: build
run: cmake --build .
run: cmake --build . --target install
- name: Test
run: cd build/tests && ctest --output-on-failure --extra-verbose
- uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
-DCMAKE_INSTALL_PREFIX=install
- name: Build
working-directory: build
run: cmake --build . --config ${{ matrix.build_type }}
run: cmake --build . --config ${{ matrix.build_type }} --target install
- name: Test
run: cd build/tests && ctest -C ${{ matrix.build_type }} --output-on-failure --extra-verbose
- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 2fbaefb

Please sign in to comment.