Skip to content

ci: ok, not 3.12 yet... #41

ci: ok, not 3.12 yet...

ci: ok, not 3.12 yet... #41

Workflow file for this run

# This matrix testing is for versions not already exercised by tests.yml
# For regular pushes, we just test the baseline Python version, but when pushing
# to main or release, we want to exercise the full matrix.
name: Run Matrix Tests
on: push
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false

Check failure on line 12 in .github/workflows/matrix-tests.yml

View workflow run for this annotation

GitHub Actions / Run Matrix Tests

Invalid workflow file

The workflow is not valid. .github/workflows/matrix-tests.yml (Line: 12, Col: 20): Unexpected value 'false'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: FedericoCarboni/setup-ffmpeg@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
pip install wheel
pip install -r requirements.txt -r requirements.dev.txt -r requirements.ci.txt -e .
- name: Run tests
run: cd test && python run.py prod