File tree Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ concurrency:
1717 group : build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }}
1818 cancel-in-progress : true
1919
20+ # needed to allow julia-actions/cache to delete old caches that it has created
21+ permissions :
22+ actions : write
23+ contents : read
24+
2025jobs :
2126 pre_job :
2227 # continue-on-error: true # Uncomment once integration is finished
3136 test :
3237 needs : pre_job
3338 if : needs.pre_job.outputs.should_skip != 'true'
34- name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
39+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
3540 runs-on : ${{ matrix.os }}
3641 strategy :
3742 fail-fast : false
@@ -44,24 +49,12 @@ jobs:
4449 - ubuntu-latest
4550 # - macOS-latest # FastTransforms.jl is broken on macOS-latest
4651 # - windows-latest
47- arch :
48- - x64
4952 steps :
5053 - uses : actions/checkout@v4
5154 - uses : julia-actions/setup-julia@v2
5255 with :
5356 version : ${{ matrix.version }}
54- arch : ${{ matrix.arch }}
55- - uses : actions/cache@v4
56- env :
57- cache-name : cache-artifacts
58- with :
59- path : ~/.julia/artifacts
60- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
61- restore-keys : |
62- ${{ runner.os }}-test-${{ env.cache-name }}-
63- ${{ runner.os }}-test-
64- ${{ runner.os }}-
57+ - uses : julia-actions/cache@v2
6558 - uses : julia-actions/julia-buildpkg@v1
6659 - uses : julia-actions/julia-runtest@v1
6760 - uses : julia-actions/julia-processcoverage@v1
You can’t perform that action at this time.
0 commit comments