Skip to content

Commit 71f3902

Browse files
committed
run CI on nightly
1 parent 45708c3 commit 71f3902

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/CI.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,24 @@ on:
88
- master
99
jobs:
1010
test:
11-
runs-on: ubuntu-latest
11+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
version:
16+
- '1'
17+
- 'nightly'
18+
os:
19+
- ubuntu-latest
20+
arch:
21+
- x64
22+
fail-fast: false
1223
steps:
1324
- uses: actions/checkout@v2
1425
- uses: julia-actions/setup-julia@v1
1526
with:
16-
version: 1
27+
version: ${{ matrix.version }}
28+
arch: ${{ matrix.arch }}
1729
- uses: actions/cache@v1
1830
env:
1931
cache-name: cache-artifacts

0 commit comments

Comments
 (0)