This repository was archived by the owner on May 6, 2021. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ pull_request :
4+ branches :
5+ - master
6+ push :
7+ branches :
8+ - master
9+ tags : ' *'
10+ jobs :
11+ test :
12+ name : Julia matrix.version−{{ matrix.os }} - matrix.arch−{{ github.event_name }}
13+ runs-on : ${{ matrix.os }}
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ version :
18+ - ' 1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
19+ - ' nightly'
20+ os :
21+ - ubuntu-latest
22+ - macOS-latest
23+ - windows-latest
24+ arch :
25+ - x64
26+ steps :
27+ - uses : actions/checkout@v2
28+ - uses : julia-actions/setup-julia@v1
29+ with :
30+ version : ${{ matrix.version }}
31+ arch : ${{ matrix.arch }}
32+ - uses : actions/cache@v1
33+ env :
34+ cache-name : cache-artifacts
35+ with :
36+ path : ~/.julia/artifacts
37+ key : runner.os−test−{{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38+ restore-keys : |
39+ runner.os−test−{{ env.cache-name }}-
40+ ${{ runner.os }}-test-
41+ ${{ runner.os }}-
42+ - uses : julia-actions/julia-buildpkg@v1
43+ - uses : julia-actions/julia-runtest@v1
44+ - uses : julia-actions/julia-processcoverage@v1
45+ - uses : codecov/codecov-action@v1
46+ with :
47+ file : lcov.info
You can’t perform that action at this time.
0 commit comments