Skip to content

Merge pull request #2 from pinzon/fix-info #2

Merge pull request #2 from pinzon/fix-info

Merge pull request #2 from pinzon/fix-info #2

Workflow file for this run

name: Publish to PyPI
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -e .[test]
- name: Run tests
run: pytest
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build project
run: python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: twine upload dist/*