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

Lines of .github/workflows/rust-clippy.yml from check-in 3b65f27fe6 that are changed by the sequence of edits moving toward check-in 3fd8c40aa8:

                         1: name: rust-ci
3b65f27fe6 2026-01-09    2: on: push
                         3: 
                         4: jobs:
                         5:   rust-ci-run:
                         6:     name: Run rust-clippy analyzing and tests
                         7:     runs-on: ubuntu-latest
                         8:     permissions:
                         9:       contents: read
                        10:     steps:
                        11:       # SETUP
                        12:       - uses: actions/checkout@v6
                        13:       - uses: dtolnay/rust-toolchain@stable
                        14:       - uses: Swatinem/rust-cache@v2
                        15: 
                        16:       # TESTS
                        17:       - name: Run tests
3b65f27fe6 2026-01-09   18:         run: cargo test --all-targets --all-features --release
                        19: 
                        20:       # CLIPPY
                        21:       - name: Run rust-clippy
                        22:         run: cargo clippy --all-targets --all-features -- -D warnings