File tree Expand file tree Collapse file tree 5 files changed +87
-1
lines changed Expand file tree Collapse file tree 5 files changed +87
-1
lines changed Original file line number Diff line number Diff line change 1+ name : CompatHelper
2+
3+ on :
4+ schedule :
5+ - cron : ' 00 * * * *'
6+
7+ jobs :
8+ build :
9+ runs-on : ${{ matrix.os }}
10+ strategy :
11+ matrix :
12+ julia-version : [1.2.0]
13+ julia-arch : [x86]
14+ os : [ubuntu-latest]
15+ steps :
16+ - uses : julia-actions/setup-julia@latest
17+ with :
18+ version : ${{ matrix.julia-version }}
19+ - name : Install dependencies
20+ run : julia -e 'using Pkg; Pkg.add(Pkg.PackageSpec(name = "CompatHelper", url = "https://github.com/bcbi/CompatHelper.jl.git"))'
21+ - name : CompatHelper.main
22+ env :
23+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24+ JULIA_DEBUG : CompatHelper
25+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 1+ name : TagBot
2+ on :
3+ issue_comment : # THIS BIT IS NEW
4+ types :
5+ - created
6+ workflow_dispatch :
7+ jobs :
8+ TagBot :
9+ # THIS 'if' LINE IS NEW
10+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11+ # NOTHING BELOW HAS CHANGED
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : JuliaRegistries/TagBot@v1
15+ with :
16+ token : ${{ secrets.GITHUB_TOKEN }}
17+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ - push
4+ - pull_request
5+ jobs :
6+ test :
7+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8+ runs-on : ${{ matrix.os }}
9+ strategy :
10+ fail-fast : false
11+ matrix :
12+ version :
13+ - ' 1.0'
14+ - ' 1'
15+ - ' ^1.6.0-0'
16+ os :
17+ - ubuntu-latest
18+ - macOS-latest
19+ - windows-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
Original file line number Diff line number Diff line change @@ -22,3 +22,4 @@ docs/site/
2222# committed for packages, but should be committed for applications that require a static
2323# environment.
2424Manifest.toml
25+ .DS_Store
Original file line number Diff line number Diff line change 11name = " Infinities"
22uuid = " e1ba4f0e-776d-440f-acd9-e1d2e9742647"
33authors = [
" Sheehan Olver <[email protected] >" ]
4- version = " 0.1.0 "
4+ version = " 0.0.1 "
55
66[compat ]
77julia = " 1"
You can’t perform that action at this time.
0 commit comments