We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a67a05c commit 6341c8eCopy full SHA for 6341c8e
.github/workflows/Downstream.yml
@@ -49,11 +49,12 @@ jobs:
49
with:
50
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
51
path: downstream
52
- name: Load this and run the downstream tests
+ - name: Load this and run the downstream tests
53
shell: julia --color=yes --project=downstream {0}
54
run: |
55
using Pkg
56
try
57
+ Pkg.develop(map(path ->Pkg.PackageSpec.(;path="lib/$(path)"), readdir("./lib")));
58
Pkg.test(coverage=true) # resolver may fail with test time depsAdd commentMore actions
59
catch err
60
err isa Pkg.Resolve.ResolverError || rethrow()
0 commit comments