File tree Expand file tree Collapse file tree 3 files changed +54
-15
lines changed
Expand file tree Collapse file tree 3 files changed +54
-15
lines changed 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 }}
15+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - ' master'
7+ - ' release-'
8+ tags : ' *'
9+ pull_request :
10+
11+ jobs :
12+ test :
13+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
14+ runs-on : ${{ matrix.os }}
15+ strategy :
16+ matrix :
17+ version :
18+ - ' 1.6'
19+ - ' 1'
20+ - ' nightly'
21+ os :
22+ - ubuntu-latest
23+ include :
24+ - os : windows-latest
25+ version : ' 1'
26+ - os : macOS-latest
27+ version : ' 1'
28+ steps :
29+ - uses : actions/checkout@v3
30+ - uses : julia-actions/setup-julia@v1
31+ with :
32+ version : ${{ matrix.version }}
33+ - uses : julia-actions/cache@v1
34+ - uses : julia-actions/julia-buildpkg@v1
35+ - uses : julia-actions/julia-runtest@v1
36+ - uses : julia-actions/julia-processcoverage@v1
37+ - uses : codecov/codecov-action@v3
38+ with :
39+ file : lcov.info
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments