We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 154043b + 0319525 commit 93a0fb6Copy full SHA for 93a0fb6
.github/workflows/lints-and-checks.yml
@@ -11,14 +11,22 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
15
+ - uses: dtolnay/rust-toolchain@stable
16
+ with:
17
+ components: "clippy,rustfmt"
18
+ - uses: Swatinem/rust-cache@v2
19
- name: Check
20
run: cargo check --verbose
21
- name: Run tests
22
run: cargo test --verbose
23
+ if: success() || failure()
24
- name: Format
25
run: cargo fmt --check
26
27
- name: Run Clippy
28
run: cargo clippy -- -D warnings
29
30
- name: Check word lists
31
run: ./scripts/check_word_lists.sh
32
0 commit comments