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

Lines of .github/workflows/rust-clippy.yml from check-in 01565c7f7e that are changed by the sequence of edits moving toward check-in 0b4812eb1c:

                         1: name: rust-ci
                         2: on:
                         3:   push:
                         4:     branches: [ master, release ]
                         5:   pull_request:
                         6: 
                         7: # sccache enable for rust/C builds
                         8: env:
                         9:   SCCACHE_GHA_ENABLED: "true"
                        10:   RUSTC_WRAPPER: "sccache"
                        11: 
                        12: jobs:
                        13:   rust-ci-run:
                        14:     name: Run rust-clippy analyzing and tests
                        15:     runs-on: ubuntu-latest
                        16:     if: github.event_name == 'push' || (github.head_ref != 'master' && github.head_ref != 'release')
                        17:     permissions:
                        18:       contents: read
                        19:     steps:
                        20:       # SETUP
01565c7f7e 2026-04-23   21:       - uses: actions/checkout@v6
                        22:       - uses: dtolnay/rust-toolchain@stable
                        23:       - uses: Swatinem/rust-cache@v2
                        24:       - uses: mozilla-actions/sccache-action@v0.0.10
                        25: 
                        26:       # TESTS
                        27:       - name: Run tests
                        28:         run: cargo test --all-targets --all-features
                        29: 
                        30:       # CLIPPY
                        31:       - name: Run rust-clippy
                        32:         run: cargo clippy --all-targets --all-features -- -D warnings