Lines of .github/workflows/rust-clippy.yml from check-in 2af2d3bc25 that are changed by the sequence of edits moving toward check-in 01565c7f7e:
1: name: rust-ci
2af2d3bc25 2026-04-18 2: on: push
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:
2af2d3bc25 2026-04-18 11: name: Run rust-clippy analyze and testing
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
2af2d3bc25 2026-04-18 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