Skip to content

Commit

Permalink
CICD: reformat make.jl and remove unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickm663 committed Jan 23, 2024
1 parent b8e22eb commit c45c0b0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ version = "0.1.0"
[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
20 changes: 16 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
push!(LOAD_PATH,"../src/")

#push!(LOAD_PATH,"../src/")
# source: https://github.com/JuliaActuary/LifeContingencies.jl/blob/master/docs/make.jl
#
using Documenter, HMD

makedocs(sitename = "HMD.jl", modules = [HMD])
makedocs(;
modules=[HMD],
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
assets=String[]
),
pages=[
"Home" => "index.md",
],
repo=Remotes.GitHub("patrickm663", "HMD.jl"),
sitename="HMD.jl",
authors="Patrick Moehrke <[email protected]> and contributors")

deploydocs(repo="github.com/patrickm663/HMD.jl")
deploydocs(; repo="github.com/patrickm663/HMD.jl")

0 comments on commit c45c0b0

Please sign in to comment.