Skip to content

Commit

Permalink
fix CI to run Windows under msys2
Browse files Browse the repository at this point in the history
  • Loading branch information
Vindaar committed Jun 12, 2024
1 parent 9ad92a9 commit d9b9cd1
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 @@ -64,12 +64,20 @@ jobs:
nimble refresh -y
nimble install -y
- name: Run tests
- name: Run tests (Linux & OSX)
if: ${{matrix.target != 'windows'}}
shell: bash
run: |
cd impulse
nimble -y test
- name: Run tests (Windows)
if: ${{matrix.target == 'windows'}}
shell: msys2 {0}
run: |
cd impulse
nimble -y test
- name: Build docs
if: >
github.event_name == 'push' && github.ref == 'refs/heads/master' &&
Expand Down

0 comments on commit d9b9cd1

Please sign in to comment.