Differences From
Artifact [b19cf4cd44]:
| ︙ | | |
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
-
+
|
name: Run rust-clippy analyzing and tests
runs-on: ubuntu-latest
if: github.event_name == 'push' || (github.head_ref != 'master' && github.head_ref != 'release')
permissions:
contents: read
steps:
# SETUP
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: mozilla-actions/sccache-action@v0.0.10
# TESTS
- name: Run tests
run: cargo test --all-targets --all-features
|
| ︙ | | |