File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 1515 test :
1616 name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1717 runs-on : ${{ matrix.os }}
18+ continue-on-error : ${{ matrix.version == 'nightly' }}
19+ timeout-minutes : 60
20+ permissions : # needed to allow julia-actions/cache to proactively delete old caches that it has created
21+ actions : write
22+ contents : read
1823 strategy :
1924 fail-fast : false
2025 matrix :
@@ -29,15 +34,17 @@ jobs:
2934 - x64
3035 - x86
3136 steps :
32- - uses : actions/checkout@v3
37+ - uses : actions/checkout@v4
3338 - uses : julia-actions/setup-julia@v2
3439 with :
3540 version : ${{ matrix.version }}
3641 arch : ${{ matrix.arch }}
37- - uses : julia-actions/cache@v1
42+ - uses : julia-actions/cache@v2
3843 - uses : julia-actions/julia-buildpkg@v1
3944 - uses : julia-actions/julia-runtest@v1
4045 - uses : julia-actions/julia-processcoverage@v1
41- - uses : codecov/codecov-action@v3
46+ - uses : codecov/codecov-action@v4
4247 with :
4348 files : lcov.info
49+ token : ${{ secrets.CODECOV_TOKEN }}
50+ fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments