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

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

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