File tree Expand file tree Collapse file tree 2 files changed +50
-29
lines changed Expand file tree Collapse file tree 2 files changed +50
-29
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ env :
3
+ JULIA_NUM_THREADS : 2
4
+ on :
5
+ pull_request :
6
+ branches :
7
+ - master
8
+ push :
9
+ branches :
10
+ - master
11
+ tags : ' *'
12
+ jobs :
13
+ test :
14
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
15
+ runs-on : ${{ matrix.os }}
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ version :
20
+ - ' nightly'
21
+ - ' 1'
22
+ - ' 1.6'
23
+ os :
24
+ - ubuntu-latest
25
+ - macos-latest
26
+ - windows-latest
27
+ arch :
28
+ - x64
29
+ steps :
30
+ - uses : actions/checkout@v2
31
+ - uses : julia-actions/setup-julia@v1
32
+ with :
33
+ version : ${{ matrix.version }}
34
+ arch : ${{ matrix.arch }}
35
+ - uses : actions/cache@v1
36
+ env :
37
+ cache-name : cache-artifacts
38
+ with :
39
+ path : ~/.julia/artifacts
40
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
41
+ restore-keys : |
42
+ ${{ runner.os }}-test-${{ env.cache-name }}-
43
+ ${{ runner.os }}-test-
44
+ ${{ runner.os }}-
45
+ - uses : julia-actions/julia-buildpkg@v1
46
+ - uses : julia-actions/julia-runtest@v1
47
+ - uses : julia-actions/julia-processcoverage@v1
48
+ - uses : codecov/codecov-action@v1
49
+ with :
50
+ file : lcov.info
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments