Overview
| Comment: | update workflow (minimize, fix a little) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3b65f27fe629c7181994e74b10febda5 |
| User & Date: | arcade on 2026-01-09 09:58:12.450 |
| Other Links: | manifest | tags |
Context
|
2026-01-09
| ||
| 09:59 | fix wrong comment check-in: 8f4dcf5e9d user: arcade tags: trunk | |
| 09:58 | update workflow (minimize, fix a little) check-in: 3b65f27fe6 user: arcade tags: trunk | |
| 09:57 | bump year, add data to Cargo.toml check-in: a2c4ae4717 user: arcade tags: trunk | |
Changes
Modified .github/workflows/rust-clippy.yml
from [589584ce6a]
to [fc0335ac73].
|
| | < < < < < | | < < > | < < | < > | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
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
|