Skip to content

Commit

Permalink
Run tests with all supported versions of Python
Browse files Browse the repository at this point in the history
  • Loading branch information
daveisfera committed Jan 16, 2024
1 parent f1a5454 commit d0ce54e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,17 @@ concurrency:
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: FedericoCarboni/setup-ffmpeg@v2
id: setup-ffmpeg
- uses: actions/setup-python@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
- run: make install
- run: make unittest

0 comments on commit d0ce54e

Please sign in to comment.