Skip to content

Commit 5c7c724

Browse files
committed
fix CI
1 parent af12ac1 commit 5c7c724

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/doc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- uses: julia-actions/setup-julia@latest
1717
with:
18-
version: '1.7'
18+
version: '1.10'
1919
- name: Install dependencies
2020
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2121
- name: Build and deploy

.github/workflows/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
version:
14-
- "1.7"
14+
- "1.10"
1515
os:
1616
- ubuntu-latest
1717
arch:

docs/make.jl

+5-4
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,20 @@ makedocs(;
2323
"Examples" => "examples.md",
2424
"Benchmarks" => "benchmarks.md",
2525
"Library" => "library.md",
26-
"Function index" => "function_index.md"
27-
],
26+
"Function index" => "function_index.md" ],
27+
warnonly = [:cross_references,:missing_docs],
28+
doctest = false,
2829
repo="https://github.com/JuliaOcean/PlanktonIndividuals.jl/blob/{commit}{path}#L{line}",
2930
sitename = "PlanktonIndividuals.jl",
30-
authors="ZhenWu <[email protected]>",
31+
authors="Zhen Wu <[email protected]>",
3132
)
3233

3334
for i in examples
3435
fil_in=joinpath(@__DIR__,"..", "examples",i)
3536
fil_out=joinpath(@__DIR__,"build", "examples",i[1:end-2]*"html")
3637
PlutoSliderServer.export_notebook(fil_in)
3738
mv(fil_in[1:end-2]*"html",fil_out)
38-
cp(fil_in,fil_out[1:end-4]*"jl")
39+
#cp(fil_in,fil_out[1:end-4]*"jl")
3940
end
4041

4142
deploydocs(repo="github.com/JuliaOcean/PlanktonIndividuals.jl.git")

0 commit comments

Comments
 (0)