This repository was archived by the owner on Nov 6, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Expand file tree Collapse file tree 1 file changed +49
-0
lines changed 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+ env :
11+ JULIA_NUM_THREADS : 2
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+ - ' 1.4'
21+ - ' 1'
22+ os :
23+ - ubuntu-latest
24+ - macos-latest
25+ - windows-latest
26+ arch :
27+ - 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-buildpkg@v1
45+ - uses : julia-actions/julia-runtest@v1
46+ - uses : julia-actions/julia-processcoverage@v1
47+ - uses : codecov/codecov-action@v1
48+ with :
49+ file : lcov.info
You can’t perform that action at this time.
0 commit comments