Skip to content

Commit 54793c2

Browse files
authored
Merge branch 'master' into dw/codecov
2 parents c78d869 + 0978a06 commit 54793c2

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

.github/workflows/Test.yml

+15-8
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ name: Run tests
22

33
on:
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,22 +13,30 @@ permissions:
1413

1514
jobs:
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
3340
- uses: julia-actions/julia-processcoverage@v1
3441
- uses: codecov/codecov-action@v5
3542
with:

0 commit comments

Comments
 (0)