Skip to content

Commit

Permalink
multiple os testing
Browse files Browse the repository at this point in the history
  • Loading branch information
samwinebrake authored Sep 1, 2023
1 parent f6e8f02 commit 3b857bb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@ name: Test iCatcher+
on: [push]
jobs:
build-project:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup ffmpeg
uses: FedericoCarboni/setup-ffmpeg@v2

- name: Setup Python
uses: actions/setup-python@v2
with:
Expand All @@ -21,4 +24,5 @@ jobs:
python -m pip install ".[dev]"
- name: Run tests
run: python -m pytest tests
run: python -m pytest tests

0 comments on commit 3b857bb

Please sign in to comment.