Skip to content

Use source instead of include for coverage #45

Use source instead of include for coverage

Use source instead of include for coverage #45

Workflow file for this run

# This workflow will build the Python project and build a wheel of the current
# release (*without* publishing to PyPI). For more information see:
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
name: build
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Check lockfile
run: uv lock --check
- name: Build a binary wheel and a source tarball
run: uv build