File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 26
26
with :
27
27
version : ${{ matrix.version }}
28
28
arch : ${{ matrix.arch }}
29
+ - name : Cache artifacts
30
+ uses : actions/cache@v1
31
+ env :
32
+ cache-name : cache-artifacts
33
+ with :
34
+ path : ~/.julia/artifacts
35
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
36
+ restore-keys : |
37
+ ${{ runner.os }}-test-${{ env.cache-name }}-
38
+ ${{ runner.os }}-test-
39
+ ${{ runner.os }}-
29
40
- uses : julia-actions/julia-buildpkg@latest
30
41
- uses : julia-actions/julia-runtest@latest
31
42
Original file line number Diff line number Diff line change 28
28
with :
29
29
version : ${{ matrix.version }}
30
30
arch : ${{ matrix.arch }}
31
+ - name : Cache artifacts
32
+ uses : actions/cache@v1
33
+ env :
34
+ cache-name : cache-artifacts
35
+ with :
36
+ path : ~/.julia/artifacts
37
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38
+ restore-keys : |
39
+ ${{ runner.os }}-test-${{ env.cache-name }}-
40
+ ${{ runner.os }}-test-
41
+ ${{ runner.os }}-
31
42
- uses : julia-actions/julia-buildpkg@latest
32
43
- uses : julia-actions/julia-runtest@latest
33
44
You can’t perform that action at this time.
0 commit comments