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

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