Skip to content

Commit 789d401

Browse files
committed
Merge remote-tracking branch 'origin/main' into educe
2 parents 1374e28 + db29e3a commit 789d401

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test-suite.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: cargo-fmt
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Get latest version of stable Rust
1919
run: rustup update stable
2020
- name: Check formatting with cargo fmt
@@ -25,7 +25,7 @@ jobs:
2525
name: clippy
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
- name: Get latest version of stable Rust
3030
run: rustup update stable
3131
- name: Lint code for quality and style with Clippy
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ${{ matrix.os }}
3838
name: test-${{ matrix.os }}
3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
- name: Get latest version of stable Rust
4242
run: rustup update stable
4343
- name: Get latest version of nightly Rust
@@ -47,4 +47,5 @@ jobs:
4747
- name: Check all examples, binaries, etc
4848
run: cargo check --all-targets
4949
- name: Check fuzzer targets
50+
if: matrix.os != 'windows-latest'
5051
run: cargo +nightly check --manifest-path fuzz/Cargo.toml --all-targets

0 commit comments

Comments
 (0)