File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,12 @@ jobs:
49
49
# the libs haven't been registered yet.
50
50
- name : " Develop the libraries since they haven't been registered yet"
51
51
run : |
52
- julia --project=. -e '
53
- using Pkg;
54
- Pkg.develop(map(path ->Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
55
- '
52
+ import Pkg
53
+ Pkg.Registry.update()
54
+ # Install packages present in subdirectories
55
+ dev_pks = Pkg.PackageSpec[]
56
+ Pkg.develop(map(path -> Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
57
+ Pkg.instantiate()
56
58
- name : Clone Downstream
57
59
uses : actions/checkout@v4
58
60
with :
80
82
with :
81
83
token : ${{ secrets.CODECOV_TOKEN }}
82
84
file : lcov.info
83
- fail_ci_if_error : true
85
+ fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments