Skip to content

Commit

Permalink
Merge branch 'update_docs' into 'master'
Browse files Browse the repository at this point in the history
More Github Actions edits

See merge request quantex/QXZoo.jl!12
  • Loading branch information
Lee James O'Riordan committed Feb 25, 2021
2 parents 9f802c7 + c2f1903 commit 14def96
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
matrix:
version:
- '1.5'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
Expand Down Expand Up @@ -48,6 +47,7 @@ jobs:
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- uses: julia-actions/julia-buildpkg@v1
- run: |
julia --project -e '
using Pkg
Expand Down
17 changes: 8 additions & 9 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
push!(LOAD_PATH,"./src/")
push!(LOAD_PATH,"../")
using Documenter, QXZoo, Random

makedocs(
modules = [QXZoo],
makedocs(;
modules=[QXZoo],
authors="QuantEx team",
clean = false,
repo="https://github.com/JuliaQX/QXZoo.jl/blob/{commit}{path}#L{line}",
sitename = "QXZoo.jl",
sitename="QXZoo.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://JuliaQX.github.io/QXZoo.jl",
assets=String[],
),
pages = Any[
pages=Any[
"Home" => "index.md",
"Examples" => "examples.md",
"Manual" => Any[
Expand All @@ -30,6 +29,6 @@ makedocs(
],
]
)
deploydocs(
repo = "github.com/JuliaQX/QXZoo.jl.git",
)
deploydocs(;
repo="github.com/JuliaQX/QXZoo.jl",
)

0 comments on commit 14def96

Please sign in to comment.