Skip to content

Commit

Permalink
ci: fixed ctest requires knowing the configuration to test (maybe n…
Browse files Browse the repository at this point in the history
…ot on non-msvc?)
  • Loading branch information
Klaim committed Mar 18, 2024
1 parent 9c7490c commit 0815207
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ jobs:

- name: Run tests
working-directory: build
run: ctest
run: ctest -C ${{matrix.config.name}}
2 changes: 1 addition & 1 deletion .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:

- name: Run tests
working-directory: build
run: ctest
run: ctest -C ${{matrix.config.name}}
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ jobs:

- name: Run tests
working-directory: build
run: ctest
run: ctest -C ${{matrix.config.name}}

0 comments on commit 0815207

Please sign in to comment.