File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 34
34
with :
35
35
version : ${{ matrix.julia-version }}
36
36
arch : x64
37
+ - name : Setup ArrayInterface
38
+ shell : julia --color=yes
39
+ run : |
40
+ using Pkg
41
+ function dev_subpkg(subpkg)
42
+ subpkg_path = joinpath(".","ArrayInterface", "lib", subpkg)
43
+ Pkg.develop(Pkg.PackageSpec(path=subpkg_path))
44
+ end
45
+ dev_subpkg("ArrayInterfaceCore")
46
+ Pkg.build()
37
47
- name : Clone Downstream
38
48
uses : actions/checkout@v2
39
49
with :
44
54
run : |
45
55
using Pkg
46
56
try
47
- function dev_subpkg(subpkg)
48
- subpkg_path = joinpath(".","ArrayInterface", "lib", subpkg)
49
- Pkg.develop(Pkg.PackageSpec(path=subpkg_path))
50
- end
51
- dev_subpkg("ArrayInterfaceCore")
52
-
53
57
# force it to use this PR's version of the package
54
58
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
55
59
You can’t perform that action at this time.
0 commit comments