Overview
| Comment: | move cargo-deny higher to start before sccache |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
fdae2d969b532e8f508527afea9967a5 |
| User & Date: | arcade on 2026-07-19 18:21:17.821 |
| Other Links: | manifest | tags |
Context
|
2026-07-19
| ||
| 18:21 | move cargo-deny higher to start before sccache leaf check-in: fdae2d969b user: arcade tags: trunk | |
| 18:17 | bump, fixes from release, add deny check-in: d3dbaf11e1 user: arcade tags: trunk | |
Changes
Modified .github/workflows/rust-clippy.yml
from [e40ac83a37]
to [ed89237d75].
| ︙ | ︙ | |||
17 18 19 20 21 22 23 |
permissions:
contents: read
steps:
# SETUP
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
| < > | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
permissions:
contents: read
steps:
# SETUP
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: EmbarkStudios/cargo-deny-action@v2
- uses: mozilla-actions/sccache-action@v0.0.10
# TESTS
- name: Run tests
run: cargo test --all-targets --all-features
# CLIPPY
- name: Run rust-clippy
|
| ︙ | ︙ |