Skip to content

Commit 5cac8bf

Browse files
committed
ci: add MacOS to matrix testing and bump action versions
1 parent 59430b8 commit 5cac8bf

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/matrix-tests.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,19 @@ on:
1010
jobs:
1111
test:
1212
strategy:
13+
fail-fast: false
1314
matrix:
14-
os: [ubuntu-latest, windows-latest]
15-
# Matrix test with Python 3.8+, but skip 3.9 since it is exercised in tests.yml
16-
python-version: ["3.8", "3.10", "3.11", "3.12", "3.13"]
15+
os: [ubuntu-latest, windows-latest, macos-latest]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1717
runs-on: ${{ matrix.os }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- uses: FedericoCarboni/setup-ffmpeg@v2
21+
if : runner.os != 'macOS'
22+
- run: brew install ffmpeg
23+
if : runner.os == 'macOS'
2124
- name: Set up Python
22-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2326
with:
2427
python-version: ${{ matrix.python-version }}
2528
- name: Install Python dependencies

0 commit comments

Comments
 (0)