Skip to content

Commit cb299e7

Browse files
authored
Control concurrency to only allow one workflow run per PR branch (#708)
1 parent c746134 commit cb299e7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/run_tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ on:
1212
push:
1313
branches:
1414
- main
15+
16+
concurrency:
17+
group: ${{ github.ref }}
18+
cancel-in-progress: true
19+
1520
jobs:
1621
run_tests:
1722
name: Run MATLAB tests (${{ matrix.matlab-version }})

0 commit comments

Comments
 (0)