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 : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ jobs :
10+ test :
11+ runs-on : ${{ matrix.os }}
12+ continue-on-error : ${{ matrix.version == 'nightly' }}
13+ strategy :
14+ matrix :
15+ version :
16+ - ' 1'
17+ # - nightly
18+ os :
19+ - ubuntu-latest
20+ # - macOS-latest
21+ # - windows-latest
22+ arch :
23+ - x86
24+ - x64
25+ exclude :
26+ - os : windows-latest
27+ arch : x86
28+ - os : macOS-latest
29+ arch : x86
30+ steps :
31+ - uses : actions/checkout@v2
32+ - uses : julia-actions/setup-julia@v1
33+ with :
34+ version : ${{ matrix.version }}
35+ arch : ${{ matrix.arch }}
36+ - uses : actions/cache@v1
37+ env :
38+ cache-name : cache-artifacts
39+ with :
40+ path : ~/.julia/artifacts
41+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
42+ restore-keys : |
43+ ${{ runner.os }}-test-${{ env.cache-name }}-
44+ ${{ runner.os }}-test-
45+ ${{ runner.os }}-
46+ - uses : julia-actions/julia-buildpkg@latest
47+ - uses : julia-actions/julia-runtest@latest
48+ - uses : julia-actions/julia-processcoverage@v1
49+ if : matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.num_threads == 1
50+ - uses : codecov/codecov-action@v1
51+ if : matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.num_threads == 1
52+ with :
53+ file : lcov.info
54+ - uses : coverallsapp/github-action@master
55+ if : matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.num_threads == 1
56+ with :
57+ github-token : ${{ secrets.GITHUB_TOKEN }}
58+ path-to-lcov : lcov.info
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: CompatHelper
22
33on :
44 schedule :
5- - cron : ' 00 * * * *'
5+ - cron : ' 00 00 * * *'
66 issues :
77 types : [opened, reopened]
88
3131 run(`julia --project=docs -e "import Pkg; Pkg.instantiate(); Pkg.update()"`);
3232 end
3333 '
34+
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments