Skip to content

Testing fixes

Testing fixes #8

Workflow file for this run

name: Publish Python Package
on:
push:
branches:
- main
tags:
- 'v*'
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Run tests
run: |
# Run your project's tests here
- name: Build package
run: python setup.py sdist bdist_wheel
- name: Publish package
if: startsWith(github.ref, 'refs/tags/v')
run: twine upload dist/*
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}