Skip to content

Commit 1cc6742

Browse files
committed
Fuzz slightly on CI
1 parent 99b16db commit 1cc6742

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/fuzz.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Fuzz
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
fuzzing:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Install Rust toolchain
16+
uses: dtolnay/rust-toolchain@stable
17+
with:
18+
toolchain: nightly
19+
20+
- name: Install cargo-fuzz
21+
run: cargo install cargo-fuzz
22+
23+
- name: Run Fuzzing
24+
run: |
25+
cargo fuzz run fuzz_amf0_body -- -max_total_time=180

0 commit comments

Comments
 (0)