File tree Expand file tree Collapse file tree 3 files changed +31
-2
lines changed Expand file tree Collapse file tree 3 files changed +31
-2
lines changed Original file line number Diff line number Diff line change 32
32
- uses : julia-actions/julia-buildpkg@v1
33
33
- uses : julia-actions/julia-runtest@v1
34
34
- uses : julia-actions/julia-processcoverage@v1
35
- - uses : codecov/codecov-action@v1
35
+ - uses : codecov/codecov-action@v3
36
36
with :
37
- file : lcov.info
37
+ files : lcov.info
Original file line number Diff line number Diff line change 3
3
schedule :
4
4
- cron : 0 0 * * *
5
5
workflow_dispatch :
6
+ permissions :
7
+ contents : write
8
+ pull-requests : write
6
9
jobs :
7
10
CompatHelper :
8
11
runs-on : ubuntu-latest
9
12
steps :
13
+ - name : Check if Julia is already available in the PATH
14
+ id : julia_in_path
15
+ run : which julia
16
+ continue-on-error : true
17
+ - name : Install Julia, but only if it is not already available in the PATH
18
+ uses : julia-actions/setup-julia@v1
19
+ with :
20
+ version : ' 1'
21
+ arch : ${{ runner.arch }}
22
+ if : steps.julia_in_path.outcome != 'success'
10
23
- name : " Add the General registry via Git"
11
24
run : |
12
25
import Pkg
Original file line number Diff line number Diff line change 4
4
types :
5
5
- created
6
6
workflow_dispatch :
7
+ inputs :
8
+ lookback :
9
+ default : 3
10
+ permissions :
11
+ actions : read
12
+ checks : read
13
+ contents : write
14
+ deployments : read
15
+ issues : read
16
+ discussions : read
17
+ packages : read
18
+ pages : read
19
+ pull-requests : read
20
+ repository-projects : read
21
+ security-events : read
22
+ statuses : read
7
23
jobs :
8
24
TagBot :
9
25
if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
You can’t perform that action at this time.
0 commit comments