[doc] Remove example #67
This file contains 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: Run Tests | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
jobs: | |
run-tests: | |
name: "Test (${{matrix.os}}, Python ${{ matrix.python-version }})" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python requirements | |
run: pip install --upgrade --upgrade-strategy eager .[dev] | |
- name: Install platform-specific requirements (Ubuntu) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt update | |
sudo apt install ffmpeg | |
- name: Install platform-specific requirements (macOS) | |
if: runner.os == 'macOS' | |
run: | | |
brew install ffmpeg | |
- name: Install platform-specific requirements (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
choco install ffmpeg --no-progress --yes | |
- name: Run tests | |
run: | | |
pytest | |
- name: Typecheck with mypy | |
run: | | |
mypy | |
- name: Generate coverage report | |
run: | | |
coverage run -m pytest | |
coverage xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |