We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af12ac1 commit 5c7c724Copy full SHA for 5c7c724
.github/workflows/doc.yml
@@ -15,7 +15,7 @@ jobs:
15
- uses: actions/checkout@v2
16
- uses: julia-actions/setup-julia@latest
17
with:
18
- version: '1.7'
+ version: '1.10'
19
- name: Install dependencies
20
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
21
- name: Build and deploy
.github/workflows/linux.yml
@@ -11,7 +11,7 @@ jobs:
11
strategy:
12
matrix:
13
version:
14
- - "1.7"
+ - "1.10"
os:
- ubuntu-latest
arch:
docs/make.jl
@@ -23,19 +23,20 @@ makedocs(;
23
"Examples" => "examples.md",
24
"Benchmarks" => "benchmarks.md",
25
"Library" => "library.md",
26
- "Function index" => "function_index.md"
27
- ],
+ "Function index" => "function_index.md" ],
+ warnonly = [:cross_references,:missing_docs],
28
+ doctest = false,
29
repo="https://github.com/JuliaOcean/PlanktonIndividuals.jl/blob/{commit}{path}#L{line}",
30
sitename = "PlanktonIndividuals.jl",
- authors="ZhenWu <[email protected]>",
31
+ authors="Zhen Wu <[email protected]>",
32
)
33
34
for i in examples
35
fil_in=joinpath(@__DIR__,"..", "examples",i)
36
fil_out=joinpath(@__DIR__,"build", "examples",i[1:end-2]*"html")
37
PlutoSliderServer.export_notebook(fil_in)
38
mv(fil_in[1:end-2]*"html",fil_out)
- cp(fil_in,fil_out[1:end-4]*"jl")
39
+ #cp(fil_in,fil_out[1:end-4]*"jl")
40
end
41
42
deploydocs(repo="github.com/JuliaOcean/PlanktonIndividuals.jl.git")
0 commit comments