We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e77e9d8 commit f989fdbCopy full SHA for f989fdb
.github/workflows/CI.yml
@@ -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