Skip to content

Commit ec749b6

Browse files
committed
add missing reference to Pkg
1 parent 1e5bc9f commit ec749b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
julia --project=benchmark -e '
3333
import Pkg;
34-
Pkg.develop(PackageSpec(path=pwd()));
34+
Pkg.develop(Pkg.PackageSpec(path=pwd()));
3535
Pkg.instantiate()'
3636
- name: Run benchmark # import Pkg; Pkg.add("BenchmarkTools") # Pkg.develop(PackageSpec(path=pwd()))
3737
# julia --project=benchmark -e '

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
- run: |
9696
julia --project=docs -e '
9797
import Pkg;
98-
Pkg.develop(PackageSpec(path=pwd()))
98+
Pkg.develop(Pkg.PackageSpec(path=pwd()))
9999
Pkg.instantiate()'
100100
- run: julia --project=docs docs/make.jl #Pkg.add("Documenter"); using Pkg
101101
env:

0 commit comments

Comments
 (0)