Skip to content

Commit

Permalink
fix(ci): run cargo-fuzz with nightly
Browse files Browse the repository at this point in the history
Signed-off-by: Lachezar Lechev <elpiel93@gmail.com>
  • Loading branch information
elpiel committed Jan 24, 2024
1 parent 9efc689 commit aad46b5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,12 @@ jobs:
run: cargo build --examples
- name: Run tests
run: cargo test
- name: Fuzz
- name: Install cargo-fuzz
# pre-build binaries
uses: taiki-e/install-action@v2
with:
tool: cargo-fuzz
- name: Fuzz (nightly)
run: |
cargo install cargo-fuzz
cargo fuzz run init -- -max_total_time=900
cargo fuzz run calibrate -- -max_total_time=1800
cargo +nightly fuzz run init -- -max_total_time=900
cargo +nightly fuzz run calibrate -- -max_total_time=1800

0 comments on commit aad46b5

Please sign in to comment.