File tree Expand file tree Collapse file tree 2 files changed +54
-2
lines changed Expand file tree Collapse file tree 2 files changed +54
-2
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ push :
4+ branches : [main, master]
5+ tags : ["*"]
6+ pull_request :
7+ jobs :
8+ test :
9+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
10+ runs-on : ubuntu-latest
11+ services :
12+ redis :
13+ image : redis:7.2.3-bookworm # https://hub.docker.com/_/redis
14+ ports :
15+ - 6379:6379
16+ strategy :
17+ fail-fast : false
18+ matrix :
19+ version :
20+ - ' 1.6'
21+ - ' 1' # automatically expands to the latest stable 1.x release of Julia
22+ - nightly
23+ os :
24+ - ubuntu-latest
25+ arch :
26+ - x64
27+ steps :
28+ - uses : actions/checkout@v2
29+ - uses : julia-actions/setup-julia@v1
30+ with :
31+ version : ${{ matrix.version }}
32+ arch : ${{ matrix.arch }}
33+ - uses : actions/cache@v1
34+ env :
35+ cache-name : cache-artifacts
36+ with :
37+ path : ~/.julia/artifacts
38+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
39+ restore-keys : |
40+ ${{ runner.os }}-test-${{ env.cache-name }}-
41+ ${{ runner.os }}-test-
42+ ${{ runner.os }}-
43+ - uses : julia-actions/julia-buildpkg@v1
44+ - uses : julia-actions/julia-runtest@v1
45+ - uses : julia-actions/julia-processcoverage@v1
46+ - uses : codecov/codecov-action@v2
47+ with :
48+ files : lcov.info
Original file line number Diff line number Diff line change 11name : TagBot
22on :
3- schedule :
4- - cron : 0 * * * *
3+ issue_comment :
4+ types :
5+ - created
6+ workflow_dispatch :
57jobs :
68 TagBot :
9+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710 runs-on : ubuntu-latest
811 steps :
912 - uses : JuliaRegistries/TagBot@v1
1013 with :
1114 token : ${{ secrets.GITHUB_TOKEN }}
15+ ssh : ${{ secrets.DOCUMENTER_KEY }}
You can’t perform that action at this time.
0 commit comments