Skip to content

Merge pull request #28 from offenesdresden/dependabot/uv/idna-3.15 #18

Merge pull request #28 from offenesdresden/dependabot/uv/idna-3.15

Merge pull request #28 from offenesdresden/dependabot/uv/idna-3.15 #18

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --group dev
- run: uv run ruff check .
- run: uv run ruff format --check .
- run: uv run mypy dvb/
- run: uv run pytest