feat(ci): Limit ci.yml to one concurrent running job per git branch (#316)

This commit is contained in:
Mohan 2025-05-14 21:20:50 +02:00 committed by GitHub
parent 75f48e35af
commit b7424ffaf5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,6 +6,10 @@ on:
branches:
- "master" # Always build head of master for the badge in the README
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
static_analysis:
runs-on: ubuntu-latest