This repository was archived by the owner on Mar 15, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +60
-1
lines changed Expand file tree Collapse file tree 4 files changed +60
-1
lines changed 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
2
2
3
3
on :
4
4
schedule :
5
- - cron : ' 00 * * * *'
5
+ - cron : ' 00 00 * * *'
6
6
issues :
7
7
types : [opened, reopened]
8
8
31
31
run(`julia --project=docs -e "import Pkg; Pkg.instantiate(); Pkg.update()"`);
32
32
end
33
33
'
34
+
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments