File tree 1 file changed +2
-7
lines changed
1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 47
47
# Explicitly develop the libraries first before running the tests for now.
48
48
# This is necessary since the tests are likely to fail otherwise, given that all
49
49
# the libs haven't been registered yet.
50
- - name : " Develop the libraries since they haven't been registered yet"
51
- run : |
52
- julia --project=. -e '
53
- using Pkg;
54
- Pkg.develop(map(path ->Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
55
- '
56
50
- name : Clone Downstream
57
51
uses : actions/checkout@v4
58
52
with :
64
58
using Pkg
65
59
try
66
60
# force it to use this PR's version of the package
61
+ Pkg.develop(map(path ->Pkg.PackageSpec.(;path="lib/$(path)"), readdir("./lib")));
67
62
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
68
63
Pkg.update()
69
64
Pkg.test(coverage=true) # resolver may fail with test time deps
80
75
with :
81
76
token : ${{ secrets.CODECOV_TOKEN }}
82
77
file : lcov.info
83
- fail_ci_if_error : true
78
+ fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments