feat: only one CI job at a time per PR
All checks were successful
CI / lint (pull_request) Successful in 52s
CI / unit-test (pull_request) Successful in 26s
CI / fuzz-test (pull_request) Successful in 1m3s
CI / mutation-test (pull_request) Successful in 43s

This prevents the Gitea runner from getting clogged up with stale CI checks.
This commit is contained in:
2026-03-17 19:51:19 -04:00
parent 62bc15a979
commit 9726670dea

View File

@@ -1,5 +1,9 @@
name: CI name: CI
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: on:
push: push:
branches: [main] branches: [main]