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 1
1
name : CI
2
+
2
3
on :
3
4
push :
4
5
branches :
5
6
- master
6
7
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
+
7
15
jobs :
8
16
test :
9
17
name : Julia ${{ matrix.version }} - ${{ matrix.group }}
Original file line number Diff line number Diff line change 7
7
tags : ' *'
8
8
pull_request :
9
9
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
+
10
16
jobs :
11
17
build :
12
18
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ name: Format suggestions
2
2
3
3
on :
4
4
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/') }}
5
11
6
12
jobs :
7
13
format :
You can’t perform that action at this time.
0 commit comments