Skip to content

Add preliminary test suite #6

Add preliminary test suite

Add preliminary test suite #6

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
windows:
runs-on: windows-latest
strategy:
matrix:
versions:
- 68
python-version:
- '3.12'
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: |
python3 -m pip install --upgrade pip
pip install vapoursynth-portable==${{ matrix.versions }}
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Running tests
run: pytest --cov=vstools tests