File tree Expand file tree Collapse file tree 1 file changed +19
-17
lines changed Expand file tree Collapse file tree 1 file changed +19
-17
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- master
7
- - dev
8
- - ' releases/**'
9
7
tags : ' *'
10
8
pull_request :
11
- release :
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/') }}
12
15
13
16
jobs :
14
17
test :
@@ -24,19 +27,18 @@ jobs:
24
27
- ' nightly'
25
28
os :
26
29
- ubuntu-latest
27
- - macOS-latest
28
- - windows-latest
29
30
arch :
30
31
- x64
31
- - x86
32
- exclude :
33
- # 32-bit Julia binaries are not available on macOS
34
- - os : macOS-latest
35
- arch : x86
36
- - os : windows-latest
37
- arch : x86
38
- - version : nightly
32
+ include :
33
+ - version : 1
34
+ os : ubuntu-latest
39
35
arch : x86
36
+ - version : 1
37
+ os : macOS-latest
38
+ arch : x64
39
+ - version : 1
40
+ os : windows-latest
41
+ arch : x64
40
42
steps :
41
43
- uses : actions/checkout@v2
42
44
- uses : julia-actions/setup-julia@latest
@@ -55,11 +57,13 @@ jobs:
55
57
${{ runner.os }}-test-
56
58
${{ runner.os }}-
57
59
- uses : julia-actions/julia-buildpkg@latest
58
- env :
59
- PYTHON : ' Conda'
60
60
- uses : julia-actions/julia-runtest@latest
61
+ with :
62
+ coverage : ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' }}
61
63
- uses : julia-actions/julia-processcoverage@v1
64
+ if : matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64'
62
65
- uses : codecov/codecov-action@v1
66
+ if : matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64'
63
67
with :
64
68
file : lcov.info
65
69
docs :
82
86
${{ runner.os }}-test-
83
87
${{ runner.os }}-
84
88
- uses : julia-actions/julia-buildpkg@latest
85
- env :
86
- PYTHON : ' Conda'
87
89
- uses : julia-actions/julia-docdeploy@latest
88
90
env :
89
91
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments