Skip to content

Commit 8914723

Browse files
Fix doc build and CI
1 parent adcbec5 commit 8914723

File tree

3 files changed

+41
-24
lines changed

3 files changed

+41
-24
lines changed

.github/workflows/CI.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

.github/workflows/Test.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ makedocs(
1818
"basics/NonlinearSolvers.md",
1919
"basics/NonlinearFunctions.md",
2020
"basics/FAQ.md"
21-
]
21+
],
2222
"Solvers" => Any[
2323
"solvers/NonlinearSystemSolvers.md",
2424
"solvers/BracketingSolvers.md"

0 commit comments

Comments
 (0)