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

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

c4797b7b7c 2024-08-11        arcade: name: rust-clippy analyze
c4797b7b7c 2024-08-11        arcade: 
b54bc87df8 2026-01-02        arcade: on: push
b54bc87df8 2026-01-02        arcade: 
b54bc87df8 2026-01-02        arcade: # Make sure CI fails on all warnings, including Clippy lints
b54bc87df8 2026-01-02        arcade: env:
b54bc87df8 2026-01-02        arcade:   RUSTFLAGS: "-Dwarnings"
c4797b7b7c 2024-08-11        arcade: 
c4797b7b7c 2024-08-11        arcade: jobs:
674d81235e 2026-01-02        arcade:   rust-clippy-test:
2283656bf6 2024-08-11        arcade:     name: Run rust-clippy analyzing
2283656bf6 2024-08-11        arcade:     runs-on: ubuntu-latest
2283656bf6 2024-08-11        arcade:     permissions:
2283656bf6 2024-08-11        arcade:       contents: read
2283656bf6 2024-08-11        arcade:       security-events: write
2283656bf6 2024-08-11        arcade:     steps:
2283656bf6 2024-08-11        arcade:       - name: Checkout code
f8050c2538 2026-01-02        arcade:         uses: actions/checkout@v6
2283656bf6 2024-08-11        arcade: 
2283656bf6 2024-08-11        arcade:       - name: Install Rust toolchain
4054f8ea66 2026-01-07        arcade:         uses: dtolnay/rust-toolchain@stable
674d81235e 2026-01-02        arcade: 
674d81235e 2026-01-02        arcade:       - uses: Swatinem/rust-cache@v2
674d81235e 2026-01-02        arcade: 
674d81235e 2026-01-02        arcade:       - name: Run tests
b54bc87df8 2026-01-02        arcade:         run: cargo test --all-targets --all-features
2283656bf6 2024-08-11        arcade: 
2283656bf6 2024-08-11        arcade:       - name: Run rust-clippy
b54bc87df8 2026-01-02        arcade:         run: cargo clippy --all-targets --all-features