Commit 3473bc2 1 parent 8824212 commit 3473bc2 Copy full SHA for 3473bc2
File tree 2 files changed +13
-14
lines changed
2 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
on :
3
3
push :
4
+ branches :
5
+ - master
6
+ - release-*
4
7
pull_request :
8
+ types : [opened, synchronize, reopened]
5
9
schedule :
6
10
- cron : ' 0 0 * * 3' # on every Wednesday
11
+ # needed to allow julia-actions/cache to delete old caches that it has created
12
+ permissions :
13
+ actions : write
14
+ contents : read
7
15
jobs :
8
16
test :
9
17
if : " !contains(github.event.head_commit.message, 'skip ci')"
@@ -22,26 +30,17 @@ jobs:
22
30
arch :
23
31
- x64
24
32
steps :
25
- - uses : actions/checkout@v2
26
- - uses : julia-actions/setup-julia@v1
33
+ - uses : actions/checkout@v4
34
+ - uses : julia-actions/setup-julia@v2
27
35
with :
28
36
version : ${{ matrix.version }}
29
37
arch : ${{ matrix.arch }}
30
- - uses : actions/cache@v2
31
- env :
32
- cache-name : cache-artifacts
33
- with :
34
- path : ~/.julia/artifacts
35
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
36
- restore-keys : |
37
- ${{ runner.os }}-test-${{ env.cache-name }}-
38
- ${{ runner.os }}-test-
39
- ${{ runner.os }}-
38
+ - uses : julia-actions/cache@v1
40
39
- uses : julia-actions/julia-buildpkg@latest
41
40
continue-on-error : ${{ matrix.version == 'nightly' }}
42
41
- uses : julia-actions/julia-runtest@latest
43
42
continue-on-error : ${{ matrix.version == 'nightly' }}
44
43
- uses : julia-actions/julia-processcoverage@v1
45
- - uses : codecov/codecov-action@v1
44
+ - uses : codecov/codecov-action@v4
46
45
with :
47
46
file : lcov.info
Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- uses : actions/checkout@v4
18
- - uses : julia-actions/setup-julia@v1
18
+ - uses : julia-actions/setup-julia@v2
19
19
with :
20
20
version : ' 1'
21
21
- name : Install dependencies
You can’t perform that action at this time.
0 commit comments