From b65989b805f75dae73069f0f1b23c6f2a2c4fd20 Mon Sep 17 00:00:00 2001 From: Keno Fischer Date: Sun, 28 Jul 2024 15:31:50 +0000 Subject: [PATCH] Stop trying to be clever --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49d45a29..be7de90e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,10 @@ jobs: echo "Methods at REPL" TERM="xterm" julia --project --code-coverage=user -e ' using InteractiveUtils, REPL, Revise - t = @async(VERSION >= v"1.11.0-DEV.623" ? Base.repl_main(nothing) : Base.run_main_repl(true, true, false, true, false)) + t = @async( + VERSION >= v"1.12.0-DEV.612" ? Base.run_main_repl(true, true, :no, true) : + VRESION >= v"1.11.0-DEV.222" ? Base.run_main_repl(true, true, :no, true, false) : + Base.run_main_repl(true, true, false, true, false)) isdefined(Base, :errormonitor) && Base.errormonitor(t) while (!isdefined(Base, :active_repl_backend) || isnothing(Base.active_repl_backend)) sleep(0.1) end pushfirst!(Base.active_repl_backend.ast_transforms, Revise.revise_first)