Skip to content

Commit

Permalink
Stop trying to be clever
Browse files Browse the repository at this point in the history
  • Loading branch information
Keno committed Jul 28, 2024
1 parent 0422670 commit b65989b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b65989b

Please sign in to comment.