File tree Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
on :
3
- - push
4
- - pull_request
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ push :
7
+ branches :
8
+ - master
9
+ tags : ' *'
5
10
jobs :
6
11
test :
7
12
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -10,14 +15,21 @@ jobs:
10
15
fail-fast : false
11
16
matrix :
12
17
version :
13
- - ' 1.6'
14
- - ' 1.7'
18
+ - ' ^1.6.0-0' # delete this line once Julia 1.6 is released
19
+ # - '1.6' # uncomment this line once Julia 1.6 is released
20
+ # - '1' # uncomment this line once Julia 1.6 is released
15
21
- ' nightly'
16
22
os :
17
23
- ubuntu-latest
24
+ - macos-latest
25
+ - windows-latest
18
26
arch :
19
27
- x64
20
28
- x86
29
+ # 32-bit Julia binaries are not available on macOS
30
+ exclude :
31
+ - os : macOS-latest
32
+ arch : x86
21
33
steps :
22
34
- uses : actions/checkout@v2
23
35
- uses : julia-actions/setup-julia@v1
47
59
- uses : actions/checkout@v2
48
60
- uses : julia-actions/setup-julia@v1
49
61
with :
50
- version : ' 1'
62
+ version : ' ^1.6.0-0' # delete this line once Julia 1.6 is released
63
+ version : ' 1' # uncomment this line once Julia 1.6 is released
51
64
- run : |
52
65
julia --project=docs -e '
53
66
using Pkg
You can’t perform that action at this time.
0 commit comments