File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,19 @@ jobs:
37
37
with :
38
38
version : ${{ matrix.version }}
39
39
arch : ${{ matrix.arch }}
40
- - uses : actions/cache@v1
41
- env :
42
- cache-name : cache-artifacts
40
+ - uses : actions/cache@v3
43
41
with :
44
42
path : ~/.julia/artifacts
45
- key : ${{ runner.os }}-test -${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
43
+ key : ${{ runner.os }}-julia -${{ hashFiles('**/Project.toml', '**/Manifest .toml') }}
46
44
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
+
50
53
- uses : julia-actions/julia-buildpkg@v1
51
54
- uses : julia-actions/julia-runtest@v1
52
55
- uses : julia-actions/julia-processcoverage@v1
You can’t perform that action at this time.
0 commit comments