Skip to content

24.0.0

24.0.0 #5

Workflow file for this run

name: Publish package to PyPI
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Build publishing artifacts
run: |
python -m pip install --upgrade pip
pip install .[test] wheel
python setup.py sdist bdist_wheel
- name: Test with pytest
run: |
pip install pytest
pytest
- uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}