Skip to content

Add support for Python 3.13 (#145) #35

Add support for Python 3.13 (#145)

Add support for Python 3.13 (#145) #35

Workflow file for this run

name: Python Tests
on: [push]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install Python tools
uses: BrandonLWhite/[email protected]
- name: Setup Python with poetry caching
# poetry cache requires poetry to already be installed, weirdly
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install ffmpeg
run: sudo apt install -y --no-install-recommends ffmpeg
- name: Test
run: |-
poetry install --extras=test
poe test