Skip to content

Commit 560ded4

Browse files
committed
Use stable toolchain for fuzzing
Use the stable toolchain for fuzzing instead of 1.58. Please note I have no idea _why_ 1.58 was chosen instead of stable. Also simplify the yaml by removing the strategy section since we only use a single toolchain in this job.
1 parent 06fba01 commit 560ded4

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ jobs:
66
Fuzz:
77
name: Fuzz
88
runs-on: ubuntu-latest
9-
strategy:
10-
matrix:
11-
rust:
12-
- 1.58.0
139
steps:
1410
- name: Checkout Crate
1511
uses: actions/checkout@v2
@@ -19,7 +15,7 @@ jobs:
1915
uses: actions-rs/toolchain@v1
2016
with:
2117
profile: minimal
22-
toolchain: ${{ matrix.rust }}
18+
toolchain: stable
2319
override: true
2420
- name: Running fuzzer
2521
env:

0 commit comments

Comments
 (0)