Update version number in pyproject.toml (#22) #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and upload to PyPI | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build_and_upload: | |
name: Build and upload | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout π | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | |
- name: Set up Python π | |
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 #v4.7.1 | |
with: | |
python-version: "3.9" | |
- name: Install Poetry and pre-commit π | |
run: pip install poetry pre-commit | |
- name: Install dependencies π | |
run: poetry install | |
- name: Run pre-commit π€ | |
run: pre-commit run --all-files | |
- name: Run tests π | |
run: poetry run invoke test | |
- name: Publish package to PyPI π | |
run: | | |
set -e | |
poetry config http-basic.pypi "__token__" "${PYPI_TOKEN}" | |
poetry publish --build | |
env: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} |