Skip to content

Commit f989fdb

Browse files
committed
add GitHub actions CI
1 parent e77e9d8 commit f989fdb

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/CI.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
types: [opened, synchronize, reopened]
9+
10+
jobs:
11+
test:
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
julia-version: [1.0.5, 1.2.0, 1.3]
16+
julia-arch: [x64, x86]
17+
os: [ubuntu-latest, windows-latest, macOS-latest]
18+
exclude:
19+
- os: macOS-latest
20+
julia-arch: x86
21+
22+
steps:
23+
- uses: actions/[email protected]
24+
- uses: julia-actions/setup-julia@latest
25+
with:
26+
version: ${{ matrix.julia-version }}
27+
- uses: julia-actions/julia-runtest@master

0 commit comments

Comments
 (0)