Skip to content

Commit 375d766

Browse files
authored
Merge pull request #65 from timueh/introduce-check-matrix
test matrix
2 parents 27ed4e6 + 3dedb2a commit 375d766

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/CI.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,26 @@ on:
88
- master
99
jobs:
1010
test:
11-
runs-on: ubuntu-latest
11+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
version:
17+
- '1.3' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
18+
- '1.4' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
19+
- '1.5'
20+
- 'nightly'
21+
os:
22+
- ubuntu-latest
23+
arch:
24+
- x64
1225
steps:
1326
- uses: actions/checkout@v2
1427
- uses: julia-actions/setup-julia@v1
1528
with:
16-
version: 1
29+
version: ${{ matrix.version }}
30+
arch: ${{ matrix.arch }}
1731
- uses: actions/cache@v1
1832
env:
1933
cache-name: cache-artifacts

0 commit comments

Comments
 (0)