generated from JuliaAI/MLJExampleInterface.jl
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmake.jl
33 lines (30 loc) · 1.02 KB
/
make.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using Documenter
using LearnAPI
using ScientificTypesBase
const REPO = Remotes.GitHub("JuliaAI", "LearnAPI.jl")
makedocs(
modules=[LearnAPI,],
format=Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
pages=[
"Home" => "index.md",
"Anatomy of an Implementation" => "anatomy_of_an_implementation.md",
"Reference" => "reference.md",
"Kinds of Target Proxy" => "kinds_of_target_proxy.md",
"fit" => "fit.md",
"predict, transform, and relatives" => "predict_transform.md",
"minimize" => "minimize.md",
"obs" => "obs.md",
"Accessor Functions" => "accessor_functions.md",
"Algorithm Traits" => "traits.md",
"Common Implementation Patterns" => "common_implementation_patterns.md",
"Testing an Implementation" => "testing_an_implementation.md",
],
sitename="LearnAPI.jl",
warnonly = [:cross_references, :missing_docs],
repo =REPO,
)
deploydocs(
devbranch="dev",
push_preview=false,
repo=REPO,
)