Skip to content

Commit

Permalink
Add workflow for fuzz build
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Chan <[email protected]>
  • Loading branch information
arthurscchan committed Oct 21, 2024
1 parent d08e093 commit 71c278a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/fuzz_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: fuzz-build

on:
pull_request:
paths:
- "fuzz/**"
push:
branches: master

defaults:
run:
working-directory: fuzz

env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: RustCrypto/actions/cargo-cache@master
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- run: cargo fuzz build -O

0 comments on commit 71c278a

Please sign in to comment.