Skip to content

fix: pin torchvision and torchcodec for torch 2.8 compatibility #12

fix: pin torchvision and torchcodec for torch 2.8 compatibility

fix: pin torchvision and torchcodec for torch 2.8 compatibility #12

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.5.14"
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras
- name: Run tests
run: uv run pytest tests/ -v