We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 307cae5 commit 98eb399Copy full SHA for 98eb399
1 file changed
.github/workflows/Test.yml
@@ -80,9 +80,12 @@ jobs:
80
run: julia --color=yes -e '
81
using Pkg;
82
Pkg.Registry.update();
83
- if VERSION < v"1.11";
84
Pkg.activate("./DifferentiationInterface/test");
85
- Pkg.rm("DifferentiationInterfaceTest");
+ if VERSION < v"1.11";
+ Pkg.rm(["DifferentiationInterfaceTest", "DifferentiationInterface"]);
86
+ Pkg.instantiate();
87
+ else;
88
+ Pkg.develop(; path="./DifferentiationInterfaceTest");
89
end;
90
test_kwargs = (; allow_reresolve=false, coverage=true);
91
if ENV["JULIA_DI_PR_DRAFT"] == "true";
0 commit comments