Check-in [7551b4dc28]
Logged in as anonymous
Overview
Comment:limit number of job runs
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7551b4dc28b3fd55d5bbd2864ba7815e2900c086608fcf765f83a9716bae818a
User & Date: arcade on 2026-01-12 15:13:22.918
Other Links: manifest | tags
Context
2026-01-12
15:17
bump and prepare to release check-in: 361d13d654 user: arcade tags: trunk
15:13
limit number of job runs check-in: 7551b4dc28 user: arcade tags: trunk
14:46
fix typo, fix comments, drop unneeded constant check-in: 6ce625a569 user: arcade tags: trunk
Changes
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