Overview
| Comment: | simplify workflow, add cache |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
674d81235e31707b7ce35bc67c7a1bbb |
| User & Date: | arcade on 2026-01-02 10:39:53.240 |
| Other Links: | manifest | tags |
Context
|
2026-01-02
| ||
| 12:39 | one more workflow fix check-in: b54bc87df8 user: arcade tags: trunk | |
| 10:39 | simplify workflow, add cache check-in: 674d81235e user: arcade tags: trunk | |
| 06:58 | bump actions/checkout check-in: f8050c2538 user: arcade tags: trunk | |
Changes
Modified .github/workflows/rust-clippy.yml
from [1ba6acf0cb]
to [18ca7526e9].
|
| < < < < < < < < < < < | < | < | < < < < > | < < | < < | < < | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
name: rust-clippy analyze
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
jobs:
rust-clippy-test:
name: Run rust-clippy analyzing
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install Rust toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test --all-features
- name: Run rust-clippy
run: cargo clippy --all-features
|