feat(ci): add concurrency to test workflow
Enhance the GitHub Actions test workflow by adding concurrency settings.
This commit is contained in:
parent
125e206047
commit
64a19e64f1
1 changed files with 4 additions and 0 deletions
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
|
|
@ -1,6 +1,10 @@
|
||||||
name: tests
|
name: tests
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue