Skip to content

Commit

Permalink
Test on Windows too now that we have platform dependent code
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamVenner committed Oct 1, 2023
1 parent 3ed4442 commit 1795084
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,18 @@ jobs:
- name: Check
run: cargo fmt --all -- --check

test:
name: Test ${{ matrix.release }}
test_unix:
name: Test (Unix)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test
run: cargo test --release --package fastgmad

test_windows:
name: Test (Windows)
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Test
run: cargo test --release --package fastgmad

0 comments on commit 1795084

Please sign in to comment.