ci.yml: Add macOS on ARM64 to the testing
This commit is contained in:
parent
ec12f679bf
commit
0aaf58ebee
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -22,13 +22,17 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ macos-13, ubuntu-latest, windows-latest ]
|
os: [ macos-13, macos-latest, ubuntu-latest, windows-latest ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Set up FFmpeg
|
- name: Set up FFmpeg (Linux and Windows)
|
||||||
|
if: runner.os != 'macOS'
|
||||||
uses: FedericoCarboni/setup-ffmpeg@v3
|
uses: FedericoCarboni/setup-ffmpeg@v3
|
||||||
|
- name: Set up FFmpeg (macOS)
|
||||||
|
if: runner.os == 'macOS'
|
||||||
|
run: brew install ffmpeg
|
||||||
- name: Set up Python 3.10
|
- name: Set up Python 3.10
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user