Skip to content

Prova release

Prova release #1

Workflow file for this run

name: Release
on: push
jobs:
build:
name: Build distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: python -m pip install -r requirements-dev.txt -r requirements.txt
- name: Build distribution
run: python -m build --sdist
- name: Twine Check
run: python -m twine check dist/*