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 19, 2024
1 parent b6902e2 commit aa65c47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
steps:
- name: Check out
uses: actions/checkout@v2
- name: Build
- name: Build and test
run: |
mkdir build
cd build
cmake .. -G "${{matrix.platform.generator}}"
cmake --build .
env CTEST_OUTPUT_ON_FAILURE=1 ctest .

0 comments on commit aa65c47

Please sign in to comment.