Skip to content

Add CI/CD, tag-based versioning, and changelog #1

Add CI/CD, tag-based versioning, and changelog

Add CI/CD, tag-based versioning, and changelog #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- uses: astral-sh/setup-uv@v8.0.0
- run: uv sync --all-extras --dev
- name: Lint
run: uv run ruff check .
- name: Type check
run: uv run mypy buildingregulariser/ tests/
- name: Test
run: uv run pytest tests/ -x -q