File tree 1 file changed +6
-10
lines changed
1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ concurrency:
17
17
group : build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }}
18
18
cancel-in-progress : true
19
19
20
+ # needed to allow julia-actions/cache to delete old caches that it has created
21
+ permissions :
22
+ actions : write
23
+ contents : read
24
+
20
25
jobs :
21
26
pre_job :
22
27
# continue-on-error: true # Uncomment once integration is finished
47
52
- uses : julia-actions/setup-julia@v2
48
53
with :
49
54
version : ${{ matrix.version }}
50
- - uses : actions/cache@v4
51
- env :
52
- cache-name : cache-artifacts
53
- with :
54
- path : ~/.julia/artifacts
55
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
56
- restore-keys : |
57
- ${{ runner.os }}-test-${{ env.cache-name }}-
58
- ${{ runner.os }}-test-
59
- ${{ runner.os }}-
55
+ - uses : julia-actions/cache@v2
60
56
- uses : julia-actions/julia-buildpkg@v1
61
57
- uses : julia-actions/julia-runtest@v1
62
58
- uses : julia-actions/julia-processcoverage@v1
You can’t perform that action at this time.
0 commit comments