Skip to content

mention new lint and uv in contributing docs #42

mention new lint and uv in contributing docs

mention new lint and uv in contributing docs #42

Workflow file for this run

name: Publish to PyPI
on: push
jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.x"
- name: Build a binary wheel and a source tarball
run: uv build
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
run: uv publish