Skip to content

v1.5.9

v1.5.9 #26

Workflow file for this run

name: Publish to PyPI
# Controls when the action will run.
on:
# Triggers the workflow when a release is created
release:
types: [created]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install setuptools wheel twine build
pip install -r requirements.txt
pip install pytest
- name: Test with pytest
run: |
pytest tests -v
- name: Build and publish to PyPI
run: |
# Install the package from setup.py
python3 -m build
python3 -m twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }}