Skip to content

Test with py3.12 (#19) #143

Test with py3.12 (#19)

Test with py3.12 (#19) #143

Workflow file for this run

name: Release
on:
push:
tags:
- 'v[0-9]*'
jobs:
deploy:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write # mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: pip install -U pip setuptools wheel tox
- run: tox -e py,docs,style
- run: python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1