Skip to content

Commit 14f1316

Browse files
authored
CI: fix fuzz_build config (#590)
The `if` key was in the wrong place: Error: every step must define a `uses` or `run` key
1 parent d6421ca commit 14f1316

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/fuzz_build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: fuzz-build
33
on:
44
pull_request:
55
paths:
6+
- ".github/workflows/fuzz_build.yml"
67
- "fuzz/**"
78
- "scrypt/**"
89
- "Cargo.*"
@@ -20,8 +21,8 @@ env:
2021
jobs:
2122
build:
2223
runs-on: ubuntu-latest
24+
if: false # disabled while using pre-releases
2325
steps:
24-
- if: false # disabled while using pre-releases
2526
- uses: actions/checkout@v4
2627
- uses: RustCrypto/actions/cargo-cache@master
2728
- uses: dtolnay/rust-toolchain@master

0 commit comments

Comments
 (0)