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

Lines of .github/workflows/rust-clippy.yml from check-in 699bd9270f that are changed by the sequence of edits moving toward check-in 32b2d1d28d:

                         1: name: rust-clippy analyze
                         2: 
699bd9270f 2026-01-02    3: on:
699bd9270f 2026-01-02    4:   push:
699bd9270f 2026-01-02    5:     branches: [ "master" ]
699bd9270f 2026-01-02    6:   pull_request:
699bd9270f 2026-01-02    7:     # The branches below must be a subset of the branches above
699bd9270f 2026-01-02    8:     branches: [ "master" ]
                         9: 
                        10: jobs:
                        11:   rust-clippy-test:
                        12:     name: Run rust-clippy analyzing
                        13:     runs-on: ubuntu-latest
                        14:     permissions:
                        15:       contents: read
                        16:       security-events: write
                        17:     steps:
                        18:       - name: Checkout code
                        19:         uses: actions/checkout@v6
                        20: 
                        21:       - name: Install Rust toolchain
                        22:         uses: hecrj/setup-rust-action@v2
                        23:         with:
                        24:           rust-version: stable
                        25: 
                        26:       - uses: Swatinem/rust-cache@v2
                        27: 
                        28:       - name: Run tests
699bd9270f 2026-01-02   29:         run: cargo test --all-features
                        30: 
                        31:       - name: Run rust-clippy
699bd9270f 2026-01-02   32:         run: cargo clippy --all-features