Skip to content

Commit

Permalink
Skip fuzzing targets on windows (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul authored Nov 15, 2024
1 parent 84c62c0 commit db29e3a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: cargo-fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get latest version of stable Rust
run: rustup update stable
- name: Check formatting with cargo fmt
Expand All @@ -25,7 +25,7 @@ jobs:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get latest version of stable Rust
run: rustup update stable
- name: Lint code for quality and style with Clippy
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: test-${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get latest version of stable Rust
run: rustup update stable
- name: Get latest version of nightly Rust
Expand All @@ -47,4 +47,5 @@ jobs:
- name: Check all examples, binaries, etc
run: cargo check --all-targets
- name: Check fuzzer targets
if: matrix.os != 'windows-latest'
run: cargo +nightly check --manifest-path fuzz/Cargo.toml --all-targets

0 comments on commit db29e3a

Please sign in to comment.