We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c8da1c commit e567414Copy full SHA for e567414
.github/workflows/ci.yml
@@ -87,3 +87,21 @@ jobs:
87
steps:
88
- uses: actions/checkout@v5
89
- run: cargo doc --all-features --no-deps
90
+
91
+ fuzz:
92
+ runs-on: ubuntu-latest
93
+ steps:
94
+ - uses: actions/checkout@v5
95
96
+ - name: Install nightly toolchain
97
+ run: rustup install nightly
98
99
+ - name: Install cargo-fuzz
100
+ run: cargo install cargo-fuzz
101
102
+ - name: Run all fuzzers for 60 seconds each
103
+ run: |
104
+ for target in $(cargo +nightly fuzz list); do
105
+ echo "Fuzzing $target..."
106
+ cargo +nightly fuzz run "$target" -- -max_total_time=60
107
+ done
.github/workflows/fuzz.yml
0 commit comments