Skip to content

Commit 48e13ea

Browse files
committed
test this
1 parent 5ba8918 commit 48e13ea

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@ jobs:
7070
with:
7171
version: ${{ matrix.julia-version }}
7272
arch: ${{ matrix.julia-arch }}
73-
- uses: julia-actions/julia-buildpkg@v1
73+
# We cannot use the Pkg getting tested to install the SAT-resolver since that is
74+
# needed by Pkg itself
75+
- name: Install deps
76+
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.instantiate()'
7477
- uses: julia-actions/julia-runtest@v1
7578
with:
7679
coverage: true
@@ -100,7 +103,7 @@ jobs:
100103
version: 'nightly'
101104
- name: Generate docs
102105
run: |
103-
julia --project --color=yes -e 'using Pkg; Pkg.activate("docs"); Pkg.instantiate();'
106+
julia --color=yes -e 'using Pkg; Pkg.activate("docs"); Pkg.instantiate();'
104107
julia --project=docs --color=yes docs/make.jl pdf
105108
env:
106109
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)