File tree Expand file tree Collapse file tree 4 files changed +20
-21
lines changed Expand file tree Collapse file tree 4 files changed +20
-21
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11name : CI
2+
23on :
34 push :
45 branches :
56 - master
67 pull_request :
8+
9+ concurrency :
10+ # Skip intermediate builds: always.
11+ # Cancel intermediate builds: only if it is a pull request build.
12+ group : ${{ github.workflow }}-${{ github.ref }}
13+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
14+
715jobs :
816 test :
917 name : Julia ${{ matrix.version }} - ${{ matrix.group }}
Original file line number Diff line number Diff line change 77 tags : ' *'
88 pull_request :
99
10+ concurrency :
11+ # Skip intermediate builds: always.
12+ # Cancel intermediate builds: only if it is a pull request build.
13+ group : ${{ github.workflow }}-${{ github.ref }}
14+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
15+
1016jobs :
1117 build :
1218 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ name: Format suggestions
22
33on :
44 pull_request :
5+
6+ concurrency :
7+ # Skip intermediate builds: always.
8+ # Cancel intermediate builds: only if it is a pull request build.
9+ group : ${{ github.workflow }}-${{ github.ref }}
10+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
511
612jobs :
713 format :
You can’t perform that action at this time.
0 commit comments