ci: remove concurrency from test workflow (#863)

This commit is contained in:
Dominik Pschenitschni 2025-07-01 20:55:58 +02:00 committed by GitHub
parent ff6efa8a94
commit b9ddb48db4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -11,6 +11,14 @@ on:
branches:
- main
concurrency:
# main merges use a unique run_id so they don't cancel each other
# other branches or PRs share a group to auto-cancel old runs
group: ${{ github.ref == 'refs/heads/main' &&
format('{0}-{1}', github.workflow, github.run_id) ||
format('{0}-{1}', github.workflow, github.event.pull_request.number || github.ref) }}
cancel-in-progress: true
jobs:
test:
name: Test