File tree Expand file tree Collapse file tree 4 files changed +13
-36
lines changed Expand file tree Collapse file tree 4 files changed +13
-36
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 12
12
- uses : JuliaRegistries/TagBot@v1
13
13
with :
14
14
token : ${{ secrets.GITHUB_TOKEN }}
15
- ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 1
1
name : CI
2
2
on :
3
- - push
4
- - pull_request
3
+ push :
4
+ branches : [master]
5
+ pull_request :
6
+ types : [opened, synchronize, reopened]
7
+ # needed to allow julia-actions/cache to delete old caches that it has created
8
+ permissions :
9
+ actions : write
10
+ contents : read
5
11
jobs :
6
12
test :
7
13
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
10
16
fail-fast : false
11
17
matrix :
12
18
include :
13
- - version : ' nightly'
14
- os : ubuntu-latest
15
- arch : x64
16
19
- version : ' 1'
17
20
os : ubuntu-latest
18
21
arch : x64
@@ -26,24 +29,15 @@ jobs:
26
29
os : windows-latest
27
30
arch : x64
28
31
steps :
29
- - uses : actions/checkout@v2
30
- - uses : julia-actions/setup-julia@v1
32
+ - uses : actions/checkout@v4
33
+ - uses : julia-actions/setup-julia@v2
31
34
with :
32
35
version : ${{ matrix.version }}
33
36
arch : ${{ matrix.arch }}
34
- - uses : actions/cache@v1
35
- env :
36
- cache-name : cache-artifacts
37
- with :
38
- path : ~/.julia/artifacts
39
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
40
- restore-keys : |
41
- ${{ runner.os }}-test-${{ env.cache-name }}-
42
- ${{ runner.os }}-test-
43
- ${{ runner.os }}-
37
+ - uses : julia-actions/cache@v2
44
38
- uses : julia-actions/julia-buildpkg@v1
45
39
- uses : julia-actions/julia-runtest@v1
46
40
- uses : julia-actions/julia-processcoverage@v1
47
- - uses : codecov/codecov-action@v1
41
+ - uses : codecov/codecov-action@v4
48
42
with :
49
43
file : lcov.info
Original file line number Diff line number Diff line change 13
13
- uses : julia-actions/setup-julia@latest
14
14
with :
15
15
version : ' 1'
16
- - uses : actions/checkout@v1
16
+ - uses : actions/checkout@v4
17
17
- name : Format check
18
18
shell : julia --color=yes {0}
19
19
run : |
You can’t perform that action at this time.
0 commit comments