From 05b5f573586e5cfc5b48dfe57f26888040f85705 Mon Sep 17 00:00:00 2001 From: fkguo Date: Mon, 7 Aug 2023 22:00:10 +0800 Subject: [PATCH] documenter --- .github/workflows/ci.yml | 2 +- docs/make.jl | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a82e5e..90780f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - julia-version: ['1.2', '1.3', '1.4', '1.5'] + julia-version: ['1.5', '1.6', '1.7', '1.8', '1.9'] julia-arch: [x64, x86] os: [ubuntu-latest, windows-latest, macOS-latest] exclude: diff --git a/docs/make.jl b/docs/make.jl index 0e107f4..f5634ca 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -9,7 +9,7 @@ using IMinuit makedocs(; modules=[IMinuit], - authors="Feng-Kun Guo", + authors="Feng-Kun Guo, Yu Zhang", repo="https://github.com/fkguo/IMinuit.jl/blob/{commit}{path}#L{line}", sitename="IMinuit.jl", format=Documenter.HTML(; @@ -29,9 +29,10 @@ makedocs(; ) deploydocs(; - repo="github.com/fkguo/IMinuit.jl", + repo="github.com/fkguo/IMinuit.jl.git", target = "build", deps = nothing, make = nothing, - branch = "gh-pages" + branch = "gh-pages", + push_preview = true, )