mirror of
https://github.com/dwinkler1/np.git
synced 2026-02-19 22:40:57 -05:00
do not allow concurrent runs
This commit is contained in:
parent
b17819929f
commit
79d671a749
2 changed files with 6 additions and 0 deletions
3
.github/workflows/check.yml
vendored
3
.github/workflows/check.yml
vendored
|
|
@ -2,6 +2,9 @@ name: "Test template"
|
|||
on:
|
||||
workflow_dispatch: # allows manual triggering
|
||||
push:
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
|
|||
3
.github/workflows/check_macos.yml
vendored
3
.github/workflows/check_macos.yml
vendored
|
|
@ -4,6 +4,9 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- 'update_n'
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue