File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -18,25 +18,25 @@ jobs:
18
18
fmt :
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - uses : actions/checkout@v3
21
+ - uses : actions/checkout@v4
22
22
- uses : dtolnay/rust-toolchain@stable
23
23
with :
24
24
components : rustfmt
25
- - uses : DavidAnson/markdownlint-cli2-action@v9
25
+ - uses : DavidAnson/markdownlint-cli2-action@v16
26
26
with :
27
27
globs : " exercises/**/*.md"
28
28
- name : Run cargo fmt
29
- run : |
30
- cargo fmt --all -- --check
29
+ run : cargo fmt --all -- --check
31
30
test :
32
31
runs-on : ${{ matrix.os }}
33
32
strategy :
34
33
matrix :
35
34
os : [ubuntu-latest, windows-latest, macOS-latest]
36
35
steps :
37
- - uses : actions/checkout@v3
36
+ - uses : actions/checkout@v4
38
37
- uses : dtolnay/rust-toolchain@stable
39
38
- uses : swatinem/rust-cache@v2
40
39
- name : Run cargo test
41
- run : |
42
- cargo test
40
+ run : cargo test
41
+ - name : Run rustlings dev check
42
+ run : cargo run -- dev check
You can’t perform that action at this time.
0 commit comments