Annotation For .github/workflows/rust-clippy.yml
Logged in as anonymous

Origin for each line in .github/workflows/rust-clippy.yml from check-in 8e37b3f028:

2fc1e49ea5 2026-01-12        arcade: name: rust-ci
8e37b3f028 2026-01-18        arcade: on: [ pull_request ]
4448c56dd2 2026-01-12        arcade: 
7551b4dc28 2026-01-12        arcade: # sccache enable for rust/C builds
4448c56dd2 2026-01-12        arcade: env:
4448c56dd2 2026-01-12        arcade:   SCCACHE_GHA_ENABLED: "true"
4448c56dd2 2026-01-12        arcade:   RUSTC_WRAPPER: "sccache"
c4797b7b7c 2024-08-11        arcade: 
c4797b7b7c 2024-08-11        arcade: jobs:
2fc1e49ea5 2026-01-12        arcade:   rust-ci-run:
2fc1e49ea5 2026-01-12        arcade:     name: Run rust-clippy analyzing and tests
2283656bf6 2024-08-11        arcade:     runs-on: ubuntu-latest
2283656bf6 2024-08-11        arcade:     permissions:
2283656bf6 2024-08-11        arcade:       contents: read
2fc1e49ea5 2026-01-12        arcade:     steps:
2fc1e49ea5 2026-01-12        arcade:       # SETUP
2fc1e49ea5 2026-01-12        arcade:       - uses: actions/checkout@v6
2fc1e49ea5 2026-01-12        arcade:       - uses: dtolnay/rust-toolchain@stable
2fc1e49ea5 2026-01-12        arcade:       - uses: Swatinem/rust-cache@v2
4448c56dd2 2026-01-12        arcade:       - uses: mozilla-actions/sccache-action@v0.0.9
2fc1e49ea5 2026-01-12        arcade: 
2fc1e49ea5 2026-01-12        arcade:       # TESTS
b54bc87df8 2026-01-02        arcade:       - name: Run tests
4448c56dd2 2026-01-12        arcade:         run: cargo test --all-targets --all-features
b54bc87df8 2026-01-02        arcade: 
2fc1e49ea5 2026-01-12        arcade:       # CLIPPY
b54bc87df8 2026-01-02        arcade:       - name: Run rust-clippy
2fc1e49ea5 2026-01-12        arcade:         run: cargo clippy --all-targets --all-features -- -D warnings