File tree Expand file tree Collapse file tree 7 files changed +82
-76
lines changed
Expand file tree Collapse file tree 7 files changed +82
-76
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ pull_request :
4+ push :
5+ branches :
6+ - master
7+ tags : ' *'
8+ jobs :
9+ test :
10+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
11+ runs-on : ${{ matrix.os }}
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ version :
16+ - ' 1.3'
17+ - ' 1'
18+ os :
19+ - ubuntu-latest
20+ - macOS-latest
21+ - windows-latest
22+ arch :
23+ - x64
24+ steps :
25+ - uses : actions/checkout@v2
26+ - uses : julia-actions/setup-julia@v1
27+ with :
28+ version : ${{ matrix.version }}
29+ arch : ${{ matrix.arch }}
30+ - uses : actions/cache@v1
31+ env :
32+ cache-name : cache-artifacts
33+ with :
34+ path : ~/.julia/artifacts
35+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
36+ restore-keys : |
37+ ${{ runner.os }}-test-${{ env.cache-name }}-
38+ ${{ runner.os }}-test-
39+ ${{ runner.os }}-
40+ - uses : julia-actions/julia-buildpkg@v1
41+ - uses : julia-actions/julia-runtest@v1
42+ - uses : julia-actions/julia-processcoverage@v1
43+ - uses : codecov/codecov-action@v1
44+ with :
45+ file : lcov.info
Original file line number Diff line number Diff line change 1+ name : CompatHelper
2+
3+ on :
4+ schedule :
5+ - cron : ' 00 00 * * *'
6+
7+ jobs :
8+ CompatHelper :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : julia-actions/setup-julia@latest
12+ with :
13+ version : 1.3
14+ - name : Pkg.add("CompatHelper")
15+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
16+ - name : CompatHelper.main()
17+ env :
18+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
19+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 11name : TagBot
22on :
3- schedule :
4- - cron : 0 0 * * *
3+ issue_comment :
4+ types :
5+ - created
56 workflow_dispatch :
67jobs :
78 TagBot :
9+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
810 runs-on : ubuntu-latest
911 steps :
1012 - uses : JuliaRegistries/TagBot@v1
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : TagBot
2+ on :
3+ issue_comment :
4+ types :
5+ - created
6+ workflow_dispatch :
7+ jobs :
8+ TagBot :
9+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : JuliaRegistries/TagBot@v1
13+ with :
14+ token : ${{ secrets.GITHUB_TOKEN }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments