Artifact fc0335ac731a7f987deee9bab7377ef69b221c297ce78f3d2a7ada4f8db28ca6:
- File .github/workflows/rust-clippy.yml — part of check-in [3b65f27fe6] at 2026-01-09 09:58:12 on branch trunk — update workflow (minimize, fix a little) (user: arcade, size: 514) [annotate] [blame] [check-ins using]
name: rust-ci on: push jobs: rust-ci-run: name: Run rust-clippy analyzing and tests runs-on: ubuntu-latest permissions: contents: read steps: # SETUP - uses: actions/checkout@v6 - uses: dtolnay/rust-toolchain@stable - uses: Swatinem/rust-cache@v2 # TESTS - name: Run tests run: cargo test --all-targets --all-features --release # CLIPPY - name: Run rust-clippy run: cargo clippy --all-targets --all-features -- -D warnings