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