Skip to content

add project README in pyproject.toml #11

add project README in pyproject.toml

add project README in pyproject.toml #11

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
run-tests:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies (and project)
run: |
pip install -U pip
pip install -e .[lint,scripts,test,check,progress]
- name: Run tests
run: inv coverage --args "-vvv"
- name: Build packages
run: |
pip install -U pip build
python -m build --sdist --wheel