Skip to content

Move release onto py-canon #66

Move release onto py-canon

Move release onto py-canon #66

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra dev
- name: Lint with ruff
run: uv run ruff check .
- name: Type check with mypy
run: uv run mypy hbw/
- name: Check docstrings with pydoclint
run: uv run pydoclint hbw/
- name: Check dead code with vulture
run: uv run vulture hbw/
- name: Run tests
run: uv run pytest