diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 4d5bcc3..56ecbfc 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -3,8 +3,9 @@ name: Test on: push: branches: - - master - tags: ["*"] + - "**" + tags: + - "**" workflow_dispatch: jobs: @@ -27,9 +28,7 @@ jobs: os: - ubuntu-latest - macOS-latest - - windows-latest - arch: - x64 allow_failure: [false] diff --git a/docs/make.jl b/docs/make.jl index 173efcd..ec32bc1 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -14,7 +14,7 @@ makedocs(; authors = "Mauricio Tec, Elias Sjölin and contributors", sitename = "AdaptiveRejectionSampling.jl", format = Documenter.HTML(; - canonical = "https://mauriciogtec.github.io/AdaptiveRejectionSampling.jl", + canonical = "https://juliastats.org/AdaptiveRejectionSampling.jl", edit_link = "master", assets = ["assets/favicon.ico"], ), @@ -27,9 +27,9 @@ makedocs(; "References" => "references.md", ], plugins = [bib], - repo = Remotes.GitHub("mauriciogtec", "AdaptiveRejectionSampling.jl"), + repo = Remotes.GitHub("JuliaStats", "AdaptiveRejectionSampling.jl"), checkdocs = :public, warnonly = [:missing_docs], ) -deploydocs(; repo = "github.com/mauriciogtec/AdaptiveRejectionSampling.jl") +deploydocs(; repo = "github.com/JuliaStats/AdaptiveRejectionSampling.jl")