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

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

2af2d3bc25 2026-04-18        arcade: name: rust-ci
01565c7f7e 2026-04-23        arcade: on:
01565c7f7e 2026-04-23        arcade:   push:
01565c7f7e 2026-04-23        arcade:     branches: [ master, release ]
01565c7f7e 2026-04-23        arcade:   pull_request:
7393d62235 2026-01-07        arcade: 
2af2d3bc25 2026-04-18        arcade: # sccache enable for rust/C builds
7393d62235 2026-01-07        arcade: env:
2af2d3bc25 2026-04-18        arcade:   SCCACHE_GHA_ENABLED: "true"
2af2d3bc25 2026-04-18        arcade:   RUSTC_WRAPPER: "sccache"
7393d62235 2026-01-07        arcade: 
7393d62235 2026-01-07        arcade: jobs:
2af2d3bc25 2026-04-18        arcade:   rust-ci-run:
01565c7f7e 2026-04-23        arcade:     name: Run rust-clippy analyzing and tests
7393d62235 2026-01-07        arcade:     runs-on: ubuntu-latest
01565c7f7e 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
2af2d3bc25 2026-04-18        arcade:     steps:
2af2d3bc25 2026-04-18        arcade:       # SETUP
2af2d3bc25 2026-04-18        arcade:       - uses: actions/checkout@v6
2af2d3bc25 2026-04-18        arcade:       - uses: dtolnay/rust-toolchain@stable
2af2d3bc25 2026-04-18        arcade:       - uses: Swatinem/rust-cache@v2
01565c7f7e 2026-04-23        arcade:       - uses: mozilla-actions/sccache-action@v0.0.10
2af2d3bc25 2026-04-18        arcade: 
2af2d3bc25 2026-04-18        arcade:       # TESTS
7393d62235 2026-01-07        arcade:       - name: Run tests
7393d62235 2026-01-07        arcade:         run: cargo test --all-targets --all-features
7393d62235 2026-01-07        arcade: 
2af2d3bc25 2026-04-18        arcade:       # CLIPPY
7393d62235 2026-01-07        arcade:       - name: Run rust-clippy
2af2d3bc25 2026-04-18        arcade:         run: cargo clippy --all-targets --all-features -- -D warnings