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

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

2fc1e49ea5 2026-01-12    1: name: rust-ci
4448c56dd2 2026-01-12    2: on: [ push, pull_request]
4448c56dd2 2026-01-12    3: 
7551b4dc28 2026-01-12    4: # only run one job per commit
7551b4dc28 2026-01-12    5: concurrency:
7551b4dc28 2026-01-12    6:   group: ${{ github.workflow }}-${{ github.ref }}
7551b4dc28 2026-01-12    7:   cancel-in-progress: true
7551b4dc28 2026-01-12    8: 
7551b4dc28 2026-01-12    9: # sccache enable for rust/C builds
4448c56dd2 2026-01-12   10: env:
4448c56dd2 2026-01-12   11:   SCCACHE_GHA_ENABLED: "true"
4448c56dd2 2026-01-12   12:   RUSTC_WRAPPER: "sccache"
c4797b7b7c 2024-08-11   13: 
c4797b7b7c 2024-08-11   14: jobs:
2fc1e49ea5 2026-01-12   15:   rust-ci-run:
2fc1e49ea5 2026-01-12   16:     name: Run rust-clippy analyzing and tests
2283656bf6 2024-08-11   17:     runs-on: ubuntu-latest
2283656bf6 2024-08-11   18:     permissions:
2283656bf6 2024-08-11   19:       contents: read
2fc1e49ea5 2026-01-12   20:     steps:
2fc1e49ea5 2026-01-12   21:       # SETUP
2fc1e49ea5 2026-01-12   22:       - uses: actions/checkout@v6
2fc1e49ea5 2026-01-12   23:       - uses: dtolnay/rust-toolchain@stable
2fc1e49ea5 2026-01-12   24:       - uses: Swatinem/rust-cache@v2
4448c56dd2 2026-01-12   25:       - uses: mozilla-actions/sccache-action@v0.0.9
2fc1e49ea5 2026-01-12   26: 
2fc1e49ea5 2026-01-12   27:       # TESTS
b54bc87df8 2026-01-02   28:       - name: Run tests
4448c56dd2 2026-01-12   29:         run: cargo test --all-targets --all-features
b54bc87df8 2026-01-02   30: 
2fc1e49ea5 2026-01-12   31:       # CLIPPY
b54bc87df8 2026-01-02   32:       - name: Run rust-clippy
2fc1e49ea5 2026-01-12   33:         run: cargo clippy --all-targets --all-features -- -D warnings