Lines of .github/workflows/rust-clippy.yml from check-in 4448c56dd2 that are changed by the sequence of edits moving toward check-in 7551b4dc28:
1: name: rust-ci
2: on: [ push, pull_request]
3:
4: env:
5: SCCACHE_GHA_ENABLED: "true"
6: RUSTC_WRAPPER: "sccache"
7:
8: jobs:
9: rust-ci-run:
10: name: Run rust-clippy analyzing and tests
11: runs-on: ubuntu-latest
12: permissions:
13: contents: read
14: steps:
15: # SETUP
16: - uses: actions/checkout@v6
17: - uses: dtolnay/rust-toolchain@stable
18: - uses: Swatinem/rust-cache@v2
19: - uses: mozilla-actions/sccache-action@v0.0.9
20:
21: # TESTS
22: - name: Run tests
23: run: cargo test --all-targets --all-features
24:
25: # CLIPPY
26: - name: Run rust-clippy
27: run: cargo clippy --all-targets --all-features -- -D warnings