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

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

3b65f27fe6 2026-01-09        arcade: name: rust-ci
be0b8602d1 2026-04-18        arcade: on: push
7393d62235 2026-01-07        arcade: 
3fd8c40aa8 2026-03-30        arcade: # sccache enable for rust/C builds
3fd8c40aa8 2026-03-30        arcade: env:
3fd8c40aa8 2026-03-30        arcade:   SCCACHE_GHA_ENABLED: "true"
3fd8c40aa8 2026-03-30        arcade:   RUSTC_WRAPPER: "sccache"
3fd8c40aa8 2026-03-30        arcade: 
7393d62235 2026-01-07        arcade: jobs:
3b65f27fe6 2026-01-09        arcade:   rust-ci-run:
3b65f27fe6 2026-01-09        arcade:     name: Run rust-clippy analyzing and tests
7393d62235 2026-01-07        arcade:     runs-on: ubuntu-latest
7393d62235 2026-01-07        arcade:     permissions:
7393d62235 2026-01-07        arcade:       contents: read
3b65f27fe6 2026-01-09        arcade:     steps:
3b65f27fe6 2026-01-09        arcade:       # SETUP
3b65f27fe6 2026-01-09        arcade:       - uses: actions/checkout@v6
3b65f27fe6 2026-01-09        arcade:       - uses: dtolnay/rust-toolchain@stable
3b65f27fe6 2026-01-09        arcade:       - uses: Swatinem/rust-cache@v2
3fd8c40aa8 2026-03-30        arcade:       - uses: mozilla-actions/sccache-action@v0.0.9
3b65f27fe6 2026-01-09        arcade: 
3b65f27fe6 2026-01-09        arcade:       # TESTS
7393d62235 2026-01-07        arcade:       - name: Run tests
3fd8c40aa8 2026-03-30        arcade:         run: cargo test --all-targets --all-features
7393d62235 2026-01-07        arcade: 
3b65f27fe6 2026-01-09        arcade:       # CLIPPY
7393d62235 2026-01-07        arcade:       - name: Run rust-clippy
3b65f27fe6 2026-01-09        arcade:         run: cargo clippy --all-targets --all-features -- -D warnings