Skip to content

Commit

Permalink
ci: wire up support for testing
Browse files Browse the repository at this point in the history
Wire up support for testing in our CI now that we have proper self
tests.
  • Loading branch information
pks-t committed Sep 20, 2024
1 parent a42ad6d commit e088b4d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,14 @@ jobs:
- name: Check out
uses: actions/checkout@v2
- name: Build
shell: bash
run: |
mkdir build
cd build
cmake .. -G "${{matrix.platform.generator}}"
cmake --build .
cmake --build . --verbose
- name: Test
shell: bash
run: |
cd build
CTEST_OUTPUT_ON_FAILURE=1 ctest --build-config Debug

0 comments on commit e088b4d

Please sign in to comment.