File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 42
42
repository : ${{ inputs.repo }}
43
43
path : downstream
44
44
- name : Load this and run the downstream tests
45
- shell : julia --color=yes --project=downstream {0}
45
+ shell : julia --color=yes --project=test_downstream {0}
46
46
run : |
47
47
using Pkg
48
48
# If provided add local registries
@@ -54,10 +54,11 @@ jobs:
54
54
end
55
55
end
56
56
try
57
+ Pkg.develop(PackageSpec(path="downstream"))
57
58
# force it to use this PR's version of the package
58
59
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
59
60
Pkg.update()
60
- Pkg.test(coverage=true ) # resolver may fail with test time deps
61
+ Pkg.test("MapBroadcast" ) # resolver may fail with test time deps
61
62
catch err
62
63
err isa Pkg.Resolve.ResolverError || rethrow()
63
64
# If we can't resolve that means this is incompatible by SemVer and this is fine
You can’t perform that action at this time.
0 commit comments