We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa2141d commit 957d8ffCopy full SHA for 957d8ff
.github/workflows/Downstream.yml
@@ -24,16 +24,12 @@ jobs:
24
version: ${{ matrix.julia-version }}
25
arch: x64
26
- uses: julia-actions/julia-buildpkg@latest
27
- - name: Clone Downstream
28
- uses: actions/checkout@v2
29
- with:
30
- repository: ${{ matrix.package.repo }}
31
- path: downstream
32
- name: Install downstream and run its tests
33
- shell: julia --color=yes --project=downstream {0}
+ shell: julia --color=yes {0}
34
run: |
35
using Pkg
36
try
+ Pkg.activate("downstream")
37
# force it to use this PR's version of the package
38
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
39
Pkg.add("${{ matrix.package }}")
0 commit comments