File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 14
14
name : cargo-fmt
15
15
runs-on : ubuntu-latest
16
16
steps :
17
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@v4
18
18
- name : Get latest version of stable Rust
19
19
run : rustup update stable
20
20
- name : Check formatting with cargo fmt
25
25
name : clippy
26
26
runs-on : ubuntu-latest
27
27
steps :
28
- - uses : actions/checkout@v3
28
+ - uses : actions/checkout@v4
29
29
- name : Get latest version of stable Rust
30
30
run : rustup update stable
31
31
- name : Lint code for quality and style with Clippy
37
37
runs-on : ${{ matrix.os }}
38
38
name : test-${{ matrix.os }}
39
39
steps :
40
- - uses : actions/checkout@v3
40
+ - uses : actions/checkout@v4
41
41
- name : Get latest version of stable Rust
42
42
run : rustup update stable
43
43
- name : Get latest version of nightly Rust
47
47
- name : Check all examples, binaries, etc
48
48
run : cargo check --all-targets
49
49
- name : Check fuzzer targets
50
+ if : matrix.os != 'windows-latest'
50
51
run : cargo +nightly check --manifest-path fuzz/Cargo.toml --all-targets
You can’t perform that action at this time.
0 commit comments