Skip to content

Commit

Permalink
bench now requires std
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Aug 31, 2024
1 parent 219693a commit 66acf96
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
flags: "-Z minimal-versions --all-features"
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update && sudo apt-get install -y valgrind
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
Expand All @@ -34,6 +33,17 @@ jobs:
- run: cargo doc --no-default-features ${{ matrix.flags }}
- run: cargo bench --no-default-features ${{ matrix.flags }}
- run: cargo check --manifest-path fuzz/Cargo.toml
bench:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update && sudo apt-get install -y valgrind
- uses: dtolnay/rust-toolchain@stable
- run: cargo bench
check_fuzz:
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@nightly
- run: cargo check --manifest-path fuzz/Cargo.toml
check_no_std:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 66acf96

Please sign in to comment.