Skip to content

Moving to uv + hatch #830

Moving to uv + hatch

Moving to uv + hatch #830

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python 3.12
uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
enable-cache: true
- name: Build package
run: uvx hatch build
- name: Check package
run: uvx twine check --strict dist/*.whl