Skip to content

Force the PyAV version for all platforms #76

Force the PyAV version for all platforms

Force the PyAV version for all platforms #76

Workflow file for this run

name: Tests Ubuntu | MacOS
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest ]
python-version: [ "3.7", "3.8", "3.9" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
python -m pip install -e .
pip install tox tox-gh-actions
- name: Test with tox
run: tox