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 18cc653
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,24 @@ 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:
toolchain: ${{ matrix.toolchain }}
- run: cargo test --no-default-features ${{ matrix.flags }}
- run: cargo doc --no-default-features ${{ matrix.flags }}
- run: cargo bench --no-default-features ${{ matrix.flags }}
bench:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update && sudo apt-get install -y valgrind
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo bench
check_fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: cargo check --manifest-path fuzz/Cargo.toml
check_no_std:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 18cc653

Please sign in to comment.