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

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

3b65f27fe6 2026-01-09        arcade: name: rust-ci
d8c1d259a2 2026-04-23        arcade: on:
d8c1d259a2 2026-04-23        arcade:   push:
d8c1d259a2 2026-04-23        arcade:     branches: [ master, release ]
d8c1d259a2 2026-04-23        arcade:   pull_request:
3fd8c40aa8 2026-03-30        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"
7393d62235 2026-01-07        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
d8c1d259a2 2026-04-23        arcade:     if: github.event_name == 'push' || (github.head_ref != 'master' && github.head_ref != 'release')
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
d8c1d259a2 2026-04-23        arcade:       - uses: mozilla-actions/sccache-action@v0.0.10
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