Skip to content

Commit d94fecc

Browse files
committed
Try fix environment instantiation
1 parent b9c749c commit d94fecc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/CI.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,12 @@ jobs:
9797
pkg"registry add General"
9898
shell: julia --color=yes {0}
9999
- name: Run tests
100-
run: julia --color=yes --code-coverage=user --depwarn=yes --project=test/python/ test/python/runtests.jl
100+
run: |
101+
julia --color=yes --code-coverage=user --depwarn=yes --project=test/python/ -e '
102+
using Pkg
103+
Pkg.instantiate()
104+
Pkg.resolve()
105+
include("test/python/runtests.jl")'
101106
shell: bash
102107
- uses: julia-actions/julia-buildpkg@v1
103108
- uses: julia-actions/julia-processcoverage@v1

0 commit comments

Comments
 (0)