File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
+
2
3
on :
3
4
pull_request :
4
5
branches :
5
6
- master
6
7
push :
7
8
branches :
8
9
- master
10
+
11
+ concurrency :
12
+ # Skip intermediate builds: always.
13
+ # Cancel intermediate builds: only if it is a pull request build.
14
+ group : ${{ github.workflow }}-${{ github.ref }}
15
+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
16
+
9
17
jobs :
10
18
test :
11
19
runs-on : ubuntu-latest
@@ -30,10 +38,10 @@ jobs:
30
38
- uses : julia-actions/cache@v1
31
39
- uses : julia-actions/julia-buildpkg@v1
32
40
with :
33
- project : " ${{ matrix.pkg == 'DiffEqProblemLibrary' && '@ .' || format('lib/{0}', matrix.pkg) }}"
41
+ project : " ${{ matrix.pkg == 'DiffEqProblemLibrary' && '.' || format('lib/{0}', matrix.pkg) }}"
34
42
- uses : julia-actions/julia-runtest@v1
35
43
with :
36
- project : " ${{ matrix.pkg == 'DiffEqProblemLibrary' && '@ .' || format('lib/{0}', matrix.pkg) }}"
44
+ project : " ${{ matrix.pkg == 'DiffEqProblemLibrary' && '.' || format('lib/{0}', matrix.pkg) }}"
37
45
- uses : julia-actions/julia-processcoverage@v1
38
46
- uses : codecov/codecov-action@v3
39
47
with :
Original file line number Diff line number Diff line change 8
8
tags : ' *'
9
9
pull_request :
10
10
11
+ concurrency :
12
+ # Skip intermediate builds: always.
13
+ # Cancel intermediate builds: only if it is a pull request build.
14
+ group : ${{ github.workflow }}-${{ github.ref }}
15
+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
16
+
11
17
jobs :
12
18
build :
13
19
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments