Skip to content

Merge pull request #25 from offenesdresden/dependabot/uv/pygments-2.20.0 #12

Merge pull request #25 from offenesdresden/dependabot/uv/pygments-2.20.0

Merge pull request #25 from offenesdresden/dependabot/uv/pygments-2.20.0 #12

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