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

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

c4797b7b7c 2024-08-11    1: name: rust-clippy analyze
c4797b7b7c 2024-08-11    2: 
b54bc87df8 2026-01-02    3: on: push
b54bc87df8 2026-01-02    4: 
b54bc87df8 2026-01-02    5: # Make sure CI fails on all warnings, including Clippy lints
b54bc87df8 2026-01-02    6: env:
b54bc87df8 2026-01-02    7:   RUSTFLAGS: "-Dwarnings"
c4797b7b7c 2024-08-11    8: 
c4797b7b7c 2024-08-11    9: jobs:
674d81235e 2026-01-02   10:   rust-clippy-test:
2283656bf6 2024-08-11   11:     name: Run rust-clippy analyzing
2283656bf6 2024-08-11   12:     runs-on: ubuntu-latest
2283656bf6 2024-08-11   13:     permissions:
2283656bf6 2024-08-11   14:       contents: read
2283656bf6 2024-08-11   15:       security-events: write
2283656bf6 2024-08-11   16:     steps:
2283656bf6 2024-08-11   17:       - name: Checkout code
f8050c2538 2026-01-02   18:         uses: actions/checkout@v6
2283656bf6 2024-08-11   19: 
2283656bf6 2024-08-11   20:       - name: Install Rust toolchain
674d81235e 2026-01-02   21:         uses: hecrj/setup-rust-action@v1
2283656bf6 2024-08-11   22:         with:
674d81235e 2026-01-02   23:           rust-version: stable
674d81235e 2026-01-02   24: 
674d81235e 2026-01-02   25:       - uses: Swatinem/rust-cache@v2
2283656bf6 2024-08-11   26: 
674d81235e 2026-01-02   27:       - name: Run tests
b54bc87df8 2026-01-02   28:         run: cargo test --all-targets --all-features
2283656bf6 2024-08-11   29: 
2283656bf6 2024-08-11   30:       - name: Run rust-clippy
b54bc87df8 2026-01-02   31:         run: cargo clippy --all-targets --all-features