Skip to content

Commit

Permalink
run ci also on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Jun 5, 2024
1 parent 0931429 commit c4b53a1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ on:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -20,5 +25,3 @@ jobs:
- run: cargo test --all-features
- run: cargo bench
- run: cargo check --manifest-path fuzz/Cargo.toml
env:
RUSTFLAGS: --cfg fuzzing

0 comments on commit c4b53a1

Please sign in to comment.