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+ push :
4+ branches :
5+ - main
6+ tags : ['*']
7+ pull_request :
8+ branches :
9+ - master
10+ concurrency :
11+ # Skip intermediate builds: always.
12+ # Cancel intermediate builds: only if it is a pull request build.
13+ group : ${{ github.workflow }}-${{ github.ref }}
14+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
15+ jobs :
16+ test :
17+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
18+ runs-on : ${{ matrix.os }}
19+ strategy :
20+ fail-fast : false
21+ matrix :
22+ version :
23+ - ' 1.6'
24+ - ' 1'
25+ - ' nightly'
26+ os :
27+ - ubuntu-latest
28+ arch :
29+ - x64
30+ steps :
31+ - uses : actions/checkout@v2
32+ - uses : julia-actions/setup-julia@v1
33+ with :
34+ version : ${{ matrix.version }}
35+ arch : ${{ matrix.arch }}
36+ - uses : julia-actions/cache@v1
37+ - uses : julia-actions/julia-buildpkg@v1
38+ - uses : julia-actions/julia-runtest@v1
39+ - uses : julia-actions/julia-processcoverage@v1
40+ - uses : codecov/codecov-action@v2
41+ with :
42+ files : lcov.info
You can’t perform that action at this time.
0 commit comments