Skip to content

Commit 58d4818

Browse files
author
LuizFCDuarte
committed
🐛 Fix build scripts
1 parent dedd230 commit 58d4818

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ jobs:
4444
restore-keys: |
4545
${{ runner.os }}-julia-
4646
47-
- name: Debug Installed Packages
48-
run: julia -e 'using Pkg; Pkg.status()'
47+
- name: Activate Project and Resolve Dependencies
48+
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.resolve(); Pkg.instantiate()'
4949

50-
- name: Resolve Dependencies
51-
run: julia -e 'using Pkg; Pkg.resolve(); Pkg.instantiate()'
50+
- name: Debug Installed Packages
51+
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.status()'
5252

5353
- uses: julia-actions/julia-buildpkg@v1
5454
- uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)