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 07aefd1 commit 62b2b08Copy full SHA for 62b2b08
.github/workflows/Downstream.yml
@@ -38,11 +38,8 @@ jobs:
38
shell: julia --color=yes {0}
39
run: |
40
using Pkg
41
- function dev_subpkg(subpkg)
42
- subpkg_path = joinpath("lib", subpkg)
43
- Pkg.develop(Pkg.PackageSpec(path=subpkg_path))
44
- end
45
- dev_subpkg("ArrayInterfaceCore")
+ Pkg.develop(Pkg.PackageSpec(path=joinpath("lib", "ArrayInterfaceCore")))
+ Pkg.develop(Pkg.PackageSpec(path=joinpath("ArrayInterface")))
46
Pkg.build()
47
- name: Clone Downstream
48
uses: actions/checkout@v2
@@ -56,7 +53,6 @@ jobs:
56
53
try
57
54
# force it to use this PR's version of the package
58
55
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
59
-
60
Pkg.update()
61
Pkg.test() # resolver may fail with test time deps
62
catch err
0 commit comments