This repository was archived by the owner on Feb 6, 2026. It is now read-only.
docs: VP9 codec should be libvpx-vp9 instead of libvpx, which is …
#16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: FedericoCarboni/setup-ffmpeg@v3 | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: | | |
| pip install -U pytest | |
| pip install .[usm] | |
| - name: Run tests | |
| run: | | |
| pytest -v -s |