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