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 bd3b4f1 commit 71826c5Copy full SHA for 71826c5
.github/workflows/CI.yml
@@ -0,0 +1,37 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - release-*
8
+ tags: '*'
9
+ pull_request:
10
11
+jobs:
12
+ name: julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
13
+ runs-on: ${{ matrix.os }}
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ version:
18
+ - '1.3'
19
+ - '1'
20
+ - 'nightly'
21
+ os:
22
+ - ubuntu-latest
23
+ - macOS-latest
24
+ - windows-latest
25
+ arch:
26
+ - x64
27
+ - x86
28
+ steps:
29
+ - uses: actions/checkout@v2
30
+ - uses: julia-actions/setup-julia@latest
31
+ with:
32
+ version: ${{ matrix.version }}
33
+ arch: ${{ matrix.arch }}
34
+ - uses: julia-actions/julia-buildpkg@latest
35
+ - uses: julia-actions/julia-runtest@latest
36
37
+ file: lcov.info
0 commit comments