Skip to content

Update hatchling requirement from >=1.27.0 to >=1.30.1 #97

Update hatchling requirement from >=1.27.0 to >=1.30.1

Update hatchling requirement from >=1.27.0 to >=1.30.1 #97

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Set up uv
uses: astral-sh/setup-uv@v7
- name: Sync development dependencies
run: uv sync --extra dev
- name: Run tests
run: uv run pytest
- name: Run Ruff
run: uv run ruff check .
- name: Run mypy
run: uv run mypy src
- name: Build distribution artifacts
run: uv build
- name: Upload build artifacts
uses: actions/upload-artifact@v7
with:
name: dist
path: dist/*