Skip to content

Commit

Permalink
Add new job fuzzing
Browse files Browse the repository at this point in the history
  • Loading branch information
venkkatesh-sekar committed May 22, 2024
1 parent a21d1b8 commit 597d7bd
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 597d7bd

Please sign in to comment.