We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae444eb commit 7019f4dCopy full SHA for 7019f4d
1 file changed
.github/workflows/rust.yml
@@ -22,22 +22,22 @@ jobs:
22
- uses: DavidAnson/markdownlint-cli2-action@v16
23
with:
24
globs: "exercises/**/*.md"
25
- - name: Run cargo fmt
+ - name: rustfmt
26
run: cargo fmt --all --check
27
test:
28
runs-on: ${{ matrix.os }}
29
strategy:
30
matrix:
31
- os: [ubuntu-latest, windows-latest, macOS-latest]
+ os: [ubuntu-latest, windows-latest, macos-latest]
32
steps:
33
- uses: actions/checkout@v4
34
- uses: swatinem/rust-cache@v2
35
- - name: Run cargo test
+ - name: cargo test
36
run: cargo test --workspace
37
dev-check:
38
runs-on: ubuntu-latest
39
40
41
42
- - name: Run rustlings dev check
+ - name: rustlings dev check
43
run: cargo run -- dev check --require-solutions
0 commit comments