File tree Expand file tree Collapse file tree 3 files changed +41
-24
lines changed Expand file tree Collapse file tree 3 files changed +41
-24
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ push :
7
+ branches :
8
+ - master
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ group :
15
+ - Core
16
+ - Downstream
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ - uses : julia-actions/setup-julia@v1
20
+ with :
21
+ version : 1
22
+ - uses : actions/cache@v1
23
+ env :
24
+ cache-name : cache-artifacts
25
+ with :
26
+ path : ~/.julia/artifacts
27
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
28
+ restore-keys : |
29
+ ${{ runner.os }}-test-${{ env.cache-name }}-
30
+ ${{ runner.os }}-test-
31
+ ${{ runner.os }}-
32
+ - uses : julia-actions/julia-buildpkg@v1
33
+ - uses : julia-actions/julia-runtest@v1
34
+ env :
35
+ GROUP : ${{ matrix.group }}
36
+ JULIA_NUM_THREADS : 11
37
+ - uses : julia-actions/julia-processcoverage@v1
38
+ - uses : codecov/codecov-action@v1
39
+ with :
40
+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ makedocs(
18
18
" basics/NonlinearSolvers.md" ,
19
19
" basics/NonlinearFunctions.md" ,
20
20
" basics/FAQ.md"
21
- ]
21
+ ],
22
22
" Solvers" => Any[
23
23
" solvers/NonlinearSystemSolvers.md" ,
24
24
" solvers/BracketingSolvers.md"
You can’t perform that action at this time.
0 commit comments