From 0aaf58ebee42cdd19fd851b4a4be0b499901c7b1 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 16 Nov 2024 05:16:54 +0100 Subject: [PATCH] ci.yml: Add macOS on ARM64 to the testing --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82e1b0cb..5b5f4e1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: