Skip to content

Commit

Permalink
Add new job fuzzing (#552)
Browse files Browse the repository at this point in the history
Co-authored-by: Yan Chen <[email protected]>
  • Loading branch information
venkkatesh-sekar and chenyan-dfinity authored May 23, 2024
1 parent 4fdc2a1 commit 7755301
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,19 @@ jobs:
run: cargo clippy --features all --tests -- -D warnings
- name: doc
run: cargo doc
fuzzing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (nightly)
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Install cargo-fuzz
run: |
cargo install cargo-fuzz
- name: Build fuzzers
run: |
cd rust/candid
cargo +nightly fuzz build

0 comments on commit 7755301

Please sign in to comment.