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

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

                         1: name: rust-clippy analyze
                         2: 
                         3: on:
                         4:   push:
                         5:     branches: [ "master" ]
                         6:   pull_request:
                         7:     # The branches below must be a subset of the branches above
                         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
a39355c1fc 2026-01-02   22:         uses: hecrj/setup-rust-action@v1
                        23:         with:
                        24:           rust-version: stable
                        25: 
                        26:       - uses: Swatinem/rust-cache@v2
                        27: 
                        28:       - name: Run tests
                        29:         run: cargo test --all-features
                        30: 
                        31:       - name: Run rust-clippy
                        32:         run: cargo clippy --all-features