Skip to content

Commit 8afdbf5

Browse files
Update GitHub Runtests workflow
- Run on push to main branch only. - Update Julia version. - Enable MacOS. - Disable fail-fast.
1 parent ba98eda commit 8afdbf5

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@ name: Run tests
22

33
env:
44
JULIA_NUM_THREADS: 4
5-
65
on:
7-
- push
6+
push:
7+
branches:
8+
- main
89
jobs:
910
test:
1011
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1112
runs-on: ${{ matrix.os }}
1213
strategy:
13-
fail-fast: true
14+
fail-fast: false
1415
matrix:
1516
version:
16-
- '1.7'
17+
- '1.7.2'
1718
os:
1819
- ubuntu-latest
1920
- windows-latest
21+
- macos-latest
2022
arch:
2123
- x64
2224
steps:

0 commit comments

Comments
 (0)