Skip to content

Commit

Permalink
Update github workflow to run the new fuzzer normalize
Browse files Browse the repository at this point in the history
kdarkhan committed Sep 16, 2023
1 parent 0e54cde commit 8fdf4be
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -48,11 +48,15 @@ jobs:
restore-keys: |
fuzz-corpus
- name: Run fuzz test
run: cargo fuzz run group_events -- -only_ascii=1 -max_total_time=30

- name: Minimize fuzz corpus
run: cargo fuzz cmin group_events
- name: Run group_events fuzzer and minimize corpus
run: |
cargo fuzz run group_events -- -only_ascii=1 -max_total_time=30
cargo fuzz cmin group_events
- name: Run normalize fuzzer and minimize corpus
run: |
cargo fuzz run normalize -- -only_ascii=1 -max_total_time=30
cargo fuzz cmin normalize
clippy:
name: Clippy

0 comments on commit 8fdf4be

Please sign in to comment.