Skip to content

Commit

Permalink
github actions - fix revise
Browse files Browse the repository at this point in the history
  • Loading branch information
wookay committed Sep 2, 2023
1 parent d48cc61 commit e5d7720
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,9 @@ jobs:
cd ..
- name: revise
if: matrix.julia-version != '1.5.4'
run: |
cd test/Example/test/
julia -e 'using Pkg; pkg"dev Revise .."'
julia --project=. -e 'p1 = @async include("revise.jl"); Timer(3) do t; touch("example/test3.jl"); sleep(0.5); rm("example/test3.jl"); sleep(1); exit(0); end; wait(p1)' example
julia --project=.. -e 'using Pkg; Pkg.add("Revise"); p1 = @async include("revise.jl"); Timer(3) do t; touch("example/test3.jl"); sleep(0.5); rm("example/test3.jl"); sleep(1); exit(0); end; wait(p1)' example
cd ../../../
TestOnWindows:
Expand Down

0 comments on commit e5d7720

Please sign in to comment.