Skip to content

feat: add PyPI metadata and dynamic versioning #20

feat: add PyPI metadata and dynamic versioning

feat: add PyPI metadata and dynamic versioning #20

Workflow file for this run

name: CI
on:
push:
branches: [ main, feat/* ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --all-extras
- name: Run black formatting check
run: uv run black --check .
- name: Run pylint
run: uv run pylint wt tests
- name: Run tests with pytest
run: uv run pytest tests/ -v --tb=short