File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -37,19 +37,16 @@ jobs:
37
37
with :
38
38
version : ${{ matrix.version }}
39
39
arch : ${{ matrix.arch }}
40
- - uses : actions/cache@v3
40
+ - uses : actions/cache@v1
41
+ env :
42
+ cache-name : cache-artifacts
41
43
with :
42
44
path : ~/.julia/artifacts
43
- key : ${{ runner.os }}-julia -${{ hashFiles('**/Project.toml', '**/Manifest .toml') }}
45
+ key : ${{ runner.os }}-test -${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
44
46
restore-keys : |
45
- ${{ runner.os }}-julia-
46
-
47
- - name : Activate Project and Resolve Dependencies
48
- run : julia -e 'using Pkg; Pkg.activate("."); Pkg.resolve(); Pkg.instantiate()'
49
-
50
- - name : Debug Installed Packages
51
- run : julia -e 'using Pkg; Pkg.activate("."); Pkg.status()'
52
-
47
+ ${{ runner.os }}-test-${{ env.cache-name }}-
48
+ ${{ runner.os }}-test-
49
+ ${{ runner.os }}-
53
50
- uses : julia-actions/julia-buildpkg@v1
54
51
- uses : julia-actions/julia-runtest@v1
55
52
- uses : julia-actions/julia-processcoverage@v1
You can’t perform that action at this time.
0 commit comments