Skip to content

Commit 98eb399

Browse files
committed
Fix?
1 parent 307cae5 commit 98eb399

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/Test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,12 @@ jobs:
8080
run: julia --color=yes -e '
8181
using Pkg;
8282
Pkg.Registry.update();
83-
if VERSION < v"1.11";
8483
Pkg.activate("./DifferentiationInterface/test");
85-
Pkg.rm("DifferentiationInterfaceTest");
84+
if VERSION < v"1.11";
85+
Pkg.rm(["DifferentiationInterfaceTest", "DifferentiationInterface"]);
86+
Pkg.instantiate();
87+
else;
88+
Pkg.develop(; path="./DifferentiationInterfaceTest");
8689
end;
8790
test_kwargs = (; allow_reresolve=false, coverage=true);
8891
if ENV["JULIA_DI_PR_DRAFT"] == "true";

0 commit comments

Comments
 (0)