File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : TagBot
2+ on :
3+ schedule :
4+ - cron : 0 * * * *
5+ jobs :
6+ TagBot :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : JuliaRegistries/TagBot@v1
10+ with :
11+ token : ${{ secrets.GITHUB_TOKEN }}
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.5'
14+ - ' 1.6'
15+ - ' nightly'
16+ os :
17+ - ubuntu-latest
18+ - macOS-latest
19+ - windows-latest
20+ arch :
21+ - x64
22+ - x86
23+ exclude :
24+ - os : macOS-latest
25+ arch : x86
26+ steps :
27+ - uses : actions/checkout@v2
28+ - uses : julia-actions/setup-julia@v1
29+ with :
30+ version : ${{ matrix.version }}
31+ arch : ${{ matrix.arch }}
32+ - uses : actions/cache@v1
33+ env :
34+ cache-name : cache-artifacts
35+ with :
36+ path : ~/.julia/artifacts
37+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38+ restore-keys : |
39+ ${{ runner.os }}-test-${{ env.cache-name }}-
40+ ${{ runner.os }}-test-
41+ ${{ runner.os }}-
42+ - uses : julia-actions/julia-buildpkg@v1
43+ - uses : julia-actions/julia-runtest@v1
You can’t perform that action at this time.
0 commit comments