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