Commit 0978a06 1 parent de939e9 commit 0978a06 Copy full SHA for 0978a06
File tree 1 file changed +15
-8
lines changed
1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,8 @@ name: Run tests
2
2
3
3
on :
4
4
push :
5
- branches :
6
- - master
7
- - main
5
+ branches : [master]
6
+ tags : ["*"]
8
7
pull_request :
9
8
10
9
# needed to allow julia-actions/cache to delete old caches that it has created
@@ -14,19 +13,27 @@ permissions:
14
13
15
14
jobs :
16
15
test :
16
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }}
17
17
runs-on : ${{ matrix.os }}
18
18
strategy :
19
+ fail-fast : false
19
20
matrix :
20
- julia-version : ['lts', '1', 'pre']
21
+ version :
22
+ - ' min'
23
+ - ' lts'
24
+ - ' 1'
21
25
os : [ubuntu-latest, windows-latest, macOS-latest]
22
-
26
+ exclude :
27
+ - os : macOS-latest # Apple Silicon
28
+ version : ' min'
29
+ include :
30
+ - os : macOS-13 # Intel
31
+ version : ' min'
23
32
steps :
24
33
- uses : actions/checkout@v4
25
34
- uses : julia-actions/setup-julia@v2
26
35
with :
27
- version : ${{ matrix.julia- version }}
36
+ version : ${{ matrix.version }}
28
37
- uses : julia-actions/cache@v2
29
38
- uses : julia-actions/julia-buildpkg@v1
30
39
- uses : julia-actions/julia-runtest@v1
31
- # with:
32
- # annotate: true
You can’t perform that action at this time.
0 commit comments