File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
+
2
3
on :
3
4
push :
4
5
branches :
5
6
- main
6
7
tags : ['*']
7
8
pull_request :
9
+
8
10
concurrency :
9
11
# Skip intermediate builds: always.
10
12
# Cancel intermediate builds: only if it is a pull request build.
11
13
group : ${{ github.workflow }}-${{ github.ref }}
12
14
cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
15
+
13
16
jobs :
14
17
test :
15
18
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -19,17 +22,17 @@ jobs:
19
22
matrix :
20
23
version :
21
24
- ' 1'
22
- - ' 1.10 '
25
+ - ' min '
23
26
os :
24
27
- ubuntu-latest
25
28
arch :
26
29
- x64
27
30
steps :
28
- - uses : actions/checkout@v3
29
- - uses : julia-actions/setup-julia@v1
31
+ - uses : actions/checkout@v4
32
+ - uses : julia-actions/setup-julia@v2
30
33
with :
31
34
version : ${{ matrix.version }}
32
35
arch : ${{ matrix.arch }}
33
- - uses : julia-actions/cache@v1
36
+ - uses : julia-actions/cache@v2
34
37
- uses : julia-actions/julia-buildpkg@v1
35
38
- uses : julia-actions/julia-runtest@v1
You can’t perform that action at this time.
0 commit comments