File tree Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,8 @@ name: Run tests
22
33on :
44 push :
5- branches :
6- - master
7- - main
5+ branches : [master]
6+ tags : ["*"]
87 pull_request :
98
109# needed to allow julia-actions/cache to delete old caches that it has created
@@ -14,19 +13,27 @@ permissions:
1413
1514jobs :
1615 test :
16+ name : Julia ${{ matrix.version }} - ${{ matrix.os }}
1717 runs-on : ${{ matrix.os }}
1818 strategy :
19+ fail-fast : false
1920 matrix :
20- julia-version : ['lts', '1', 'pre']
21+ version :
22+ - ' min'
23+ - ' lts'
24+ - ' 1'
2125 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'
2332 steps :
2433 - uses : actions/checkout@v4
2534 - uses : julia-actions/setup-julia@v2
2635 with :
27- version : ${{ matrix.julia- version }}
36+ version : ${{ matrix.version }}
2837 - uses : julia-actions/cache@v2
2938 - uses : julia-actions/julia-buildpkg@v1
3039 - uses : julia-actions/julia-runtest@v1
31- # with:
32- # annotate: true
You can’t perform that action at this time.
0 commit comments