diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 872dd67b..469f890a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: version: - 'min' - 'lts' + - '1.9' - '1' # automatically expands to the latest stable 1.x release of Julia - 'nightly' os: diff --git a/src/HTTP.jl b/src/HTTP.jl index b997162f..90734934 100644 --- a/src/HTTP.jl +++ b/src/HTTP.jl @@ -632,7 +632,7 @@ function Base.parse(::Type{T}, str::AbstractString)::T where T <: Message end # only run if precompiling -if VERSION >= v"1.9.0-0" && ccall(:jl_generating_output, Cint, ()) == 1 +if VERSION >= v"1.10.0-" && ccall(:jl_generating_output, Cint, ()) == 1 include("precompile.jl") end