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.
2 parents 691e98a + 1194c40 commit 4463d0cCopy full SHA for 4463d0c
.github/workflows/CI.yml
@@ -0,0 +1,31 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ tags: '*'
7
+ pull_request:
8
+jobs:
9
+ test:
10
+ name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
11
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ version:
15
+ - '1.6'
16
+ os:
17
+ - ubuntu-latest
18
+ - macOS-latest
19
+ - windows-latest
20
+ arch:
21
+ - x64
22
+ steps:
23
+ - uses: actions/checkout@v1
24
+ - uses: julia-actions/setup-julia@latest
25
+ with:
26
+ version: ${{ matrix.version }}
27
+ arch: ${{ matrix.arch }}
28
+ - uses: julia-actions/julia-runtest@latest
29
+ - uses: julia-actions/julia-uploadcodecov@latest
30
+ env:
31
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments