Skip to content

Commit 9711692

Browse files
authored
Fix CI (#1)
1 parent 1e08627 commit 9711692

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

.github/workflows/CI.yml renamed to .github/workflows/ci.yml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
name: CI
22
on:
3-
- push
4-
- pull_request
3+
pull_request:
4+
branches:
5+
- master
6+
push:
7+
branches:
8+
- master
9+
tags: '*'
510
jobs:
611
test:
712
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -10,14 +15,21 @@ jobs:
1015
fail-fast: false
1116
matrix:
1217
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
1521
- 'nightly'
1622
os:
1723
- ubuntu-latest
24+
- macos-latest
25+
- windows-latest
1826
arch:
1927
- x64
2028
- x86
29+
# 32-bit Julia binaries are not available on macOS
30+
exclude:
31+
- os: macOS-latest
32+
arch: x86
2133
steps:
2234
- uses: actions/checkout@v2
2335
- uses: julia-actions/setup-julia@v1
@@ -47,7 +59,8 @@ jobs:
4759
- uses: actions/checkout@v2
4860
- uses: julia-actions/setup-julia@v1
4961
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
5164
- run: |
5265
julia --project=docs -e '
5366
using Pkg

0 commit comments

Comments
 (0)