File tree Expand file tree Collapse file tree 2 files changed +57
-0
lines changed Expand file tree Collapse file tree 2 files changed +57
-0
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+ on :
3+ push :
4+ branches :
5+ - main
6+ tags : ' *'
7+ pull_request :
8+ jobs :
9+ test :
10+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
11+ runs-on : ${{ matrix.os }}
12+ continue-on-error : ${{ matrix.version == 'nightly' }}
13+ strategy :
14+ matrix :
15+ version :
16+ - ' 1.6'
17+ - ' 1'
18+ - ' nightly'
19+ os :
20+ - ubuntu-latest
21+ - macOS-latest
22+ - windows-latest
23+ arch :
24+ - x64
25+ - x86
26+ exclude :
27+ # Remove some configurations from the build matrix to reduce CI time.
28+ # See https://github.com/marketplace/actions/setup-julia-environment
29+ # MacOS not available on x86
30+ - {os: 'macOS-latest', arch: 'x86'}
31+ steps :
32+ - uses : actions/checkout@v1
33+ - uses : julia-actions/setup-julia@latest
34+ with :
35+ version : ${{ matrix.version }}
36+ arch : ${{ matrix.arch }}
37+ - uses : julia-actions/julia-buildpkg@latest
38+ - uses : julia-actions/julia-runtest@latest
39+ - uses : julia-actions/julia-uploadcodecov@latest
40+ env :
41+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
42+
You can’t perform that action at this time.
0 commit comments