Skip to content

Commit a35cf19

Browse files
committed
Use pwd in lib path
1 parent 6bed27b commit a35cf19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/Downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
shell: julia --color=yes {0}
4545
run: |
4646
using Pkg
47-
Pkg.develop(Pkg.PackageSpec(path=joinpath("lib", "ArrayInterfaceCore")))
47+
Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceCore")))
4848
Pkg.build()
4949
- name: Load this and run the downstream tests
5050
shell: julia --color=yes --project=downstream {0}

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using ArrayInterface
2+
using Pkg
23

34
function dev_subpkg(subpkg)
45
subpkg_path = joinpath(dirname(@__DIR__), "lib", subpkg)
@@ -21,4 +22,3 @@ makedocs(;
2122
deploydocs(;
2223
repo="github.com/JuliaArrays/ArrayInterface.jl"
2324
)
24-

0 commit comments

Comments
 (0)