Differences From Artifact [893c5d9065]:
- File .github/workflows/rust-clippy.yml — part of check-in [4448c56dd2] at 2026-01-12 13:39:19 on branch trunk — add action for pull requests, ass sccache (user: arcade, size: 636) [annotate] [blame] [check-ins using]
To Artifact [a00f422cb7]:
- File .github/workflows/rust-clippy.yml — part of check-in [7551b4dc28] at 2026-01-12 15:13:22 on branch trunk — limit number of job runs (user: arcade, size: 792) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | + + + + + + |
name: rust-ci
on: [ push, pull_request]
# only run one job per commit
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# sccache enable for rust/C builds
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
rust-ci-run:
name: Run rust-clippy analyzing and tests
|
| ︙ |