We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d217cf5 commit 569ff85Copy full SHA for 569ff85
.github/workflows/fuzz.yml
@@ -18,8 +18,9 @@ jobs:
18
- uses: dtolnay/rust-toolchain@master
19
with:
20
toolchain: nightly
21
+ components: rust-src
22
- run: cargo install cargo-fuzz
23
- run: cargo check
- - run: |
24
- cd fuzz
25
- cargo +nightly fuzz run --release ${{matrix.target}} -- -max_total_time=300
+ - run: cd fuzz
+ - run: cargo fuzz run --release ${{matrix.target}} -- -max_total_time=150
26
+ - run: cargo fuzz run --release ${{matrix.target}} --sanitizer memory -- -max_total_time=150
0 commit comments