Skip to content

Commit f88a2d1

Browse files
committed
add CI job that cargo check the fuzz crate
1 parent 7c6c3da commit f88a2d1

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/rust.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,23 @@ jobs:
169169
uses: dtolnay/rust-toolchain@stable
170170
- run: rustup target add wasm32-unknown-unknown
171171
- run: cargo check --target wasm32-unknown-unknown
172+
173+
Fuzz:
174+
name: Check Fuzz
175+
needs: Prepare
176+
runs-on: ubuntu-latest
177+
strategy:
178+
fail-fast: false
179+
steps:
180+
- name: "Checkout repo"
181+
uses: actions/checkout@v4
182+
183+
- name: "Select nightly toolchain"
184+
uses: dtolnay/rust-toolchain@v1
185+
with:
186+
toolchain: ${{ needs.Prepare.outputs.nightly_version }}
187+
188+
- name: "Check fuzz crate"
189+
run: |
190+
cargo check --manifest-path=fuzz/Cargo.toml
191+

0 commit comments

Comments
 (0)