-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (30 loc) · 885 Bytes
/
fuzz.yml
File metadata and controls
32 lines (30 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Fuzz
on:
schedule:
- cron: '0 3 * * *'
workflow_dispatch:
jobs:
fuzz:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- crate: auths-verifier
target: attestation_parse
- crate: auths-verifier
target: did_parse
- crate: auths-verifier
target: verify_chain
- crate: auths-policy
target: policy_eval
- crate: auths-keri
target: fuzz_cesr_import
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2026-03-29
- run: cargo install cargo-fuzz
- name: Run fuzz target (${{ matrix.crate }}/${{ matrix.target }})
run: cd crates/${{ matrix.crate }} && cargo +nightly fuzz run ${{ matrix.target }} -- -max_total_time=60