Skip to content

Commit 6a2f682

Browse files
authored
Merge pull request #6372 from moodmosaic/fuzz-cov-6355/00-unbreak-cargo-fuzz
Update cargo-fuzz setup; split `fuzz_value_sanitize` so it runs
2 parents e63ecca + ab5c9ce commit 6a2f682

File tree

5 files changed

+1002
-648
lines changed

5 files changed

+1002
-648
lines changed

.github/workflows/cargo-hack-check.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,24 @@ jobs:
116116

117117
- name: Run cargo hack check
118118
run: ${{ matrix.command }}
119+
120+
fuzz-targets:
121+
name: Fuzz targets (nightly)
122+
runs-on: ubuntu-latest
123+
steps:
124+
- name: Checkout
125+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
126+
with:
127+
persist-credentials: false
128+
129+
- name: Install Rust nightly toolchain
130+
uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 # v1.13.0
131+
with:
132+
toolchain: nightly
133+
134+
- name: Check fuzz targets
135+
run: |
136+
cargo +nightly check \
137+
--manifest-path clarity/fuzz/Cargo.toml \
138+
--bins \
139+
--locked

0 commit comments

Comments
 (0)