Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
recp committed Jan 23, 2025
1 parent a18d9c2 commit ae1b9a3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,15 @@ jobs:
- name: Build
run: cmake --build build

- name: Test
- name: Test (Windows)
if: runner.os == 'Windows'
shell: pwsh
working-directory: build
run: .\tests.exe

- name: Test (Unix)
if: runner.os != 'Windows'
shell: bash
working-directory: build
run: ./tests

Expand Down

0 comments on commit ae1b9a3

Please sign in to comment.