diff --git a/.github/workflows/tests_and_docs.yml b/.github/workflows/tests_and_docs.yml index 8cbaaf5..cdf8d41 100644 --- a/.github/workflows/tests_and_docs.yml +++ b/.github/workflows/tests_and_docs.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - julia-version: ['1.7', '1.8', '1.9'] + julia-version: ['1.7', '1.8', '1.9', '~1.10.0-0'] threads: ['1', '2'] fail-fast: false steps: diff --git a/docs/make.jl b/docs/make.jl index cf96850..60c2b8b 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -9,8 +9,8 @@ end using Documenter, MuseInference, Turing -# change to true to skip running doc code -Documenter.Utilities.Selectors.disable(::Type{Documenter.Expanders.ExampleBlocks}) = false +# uncomment to skip running doc code +# Documenter.Selectors.disable(::Type{Documenter.Expanders.ExampleBlocks}) = true makedocs( sitename = "MuseInference", @@ -25,7 +25,7 @@ makedocs( ], checkdocs = :none, doctest = false, - strict = false, + warnonly = false, modules = [MuseInference] )