Skip to content

Commit ccf8cd4

Browse files
committed
More CIs
1 parent 6266f0e commit ccf8cd4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,16 @@ on:
88
- master
99
jobs:
1010
test:
11-
runs-on: ubuntu-latest
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
julia-version: ['1', '^1.7.0-0']
15+
os: [ubuntu-latest, windows-latest, macOS-latest]
1216
steps:
1317
- uses: actions/checkout@v2
1418
- uses: julia-actions/setup-julia@v1
1519
with:
16-
version: 1
20+
version: ${{ matrix.julia-version }}
1721
- uses: actions/cache@v1
1822
env:
1923
cache-name: cache-artifacts

0 commit comments

Comments
 (0)