ci.yml: Add macOS on ARM64 to the testing

This commit is contained in:
Christian Clauss 2024-11-16 05:16:54 +01:00 committed by GitHub
parent ec12f679bf
commit 0aaf58ebee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,13 +22,17 @@ jobs:
test:
strategy:
matrix:
os: [ macos-13, ubuntu-latest, windows-latest ]
os: [ macos-13, macos-latest, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up FFmpeg
- name: Set up FFmpeg (Linux and Windows)
if: runner.os != 'macOS'
uses: FedericoCarboni/setup-ffmpeg@v3
- name: Set up FFmpeg (macOS)
if: runner.os == 'macOS'
run: brew install ffmpeg
- name: Set up Python 3.10
uses: actions/setup-python@v5
with: