Skip to content

Commit dedd230

Browse files
author
LuizFCDuarte
committed
💚 Update build scripts
1 parent 0015053 commit dedd230

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,19 @@ jobs:
3737
with:
3838
version: ${{ matrix.version }}
3939
arch: ${{ matrix.arch }}
40-
- uses: actions/cache@v1
41-
env:
42-
cache-name: cache-artifacts
40+
- uses: actions/cache@v3
4341
with:
4442
path: ~/.julia/artifacts
45-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
43+
key: ${{ runner.os }}-julia-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}
4644
restore-keys: |
47-
${{ runner.os }}-test-${{ env.cache-name }}-
48-
${{ runner.os }}-test-
49-
${{ runner.os }}-
45+
${{ runner.os }}-julia-
46+
47+
- name: Debug Installed Packages
48+
run: julia -e 'using Pkg; Pkg.status()'
49+
50+
- name: Resolve Dependencies
51+
run: julia -e 'using Pkg; Pkg.resolve(); Pkg.instantiate()'
52+
5053
- uses: julia-actions/julia-buildpkg@v1
5154
- uses: julia-actions/julia-runtest@v1
5255
- uses: julia-actions/julia-processcoverage@v1

0 commit comments

Comments
 (0)