Skip to content

Create config.yml

Create config.yml #6

Workflow file for this run

name: Publish Python Package
on:
push:
branches:
- main
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9' # or any other version you want to use
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine pytest
pip install .
- name: Set PYTHONPATH
run: echo "PYTHONPATH=$PYTHONPATH:$(pwd)/src" >> $GITHUB_ENV
- name: Run tests
run: pytest tests/
- name: Build package
run: python -m build
- name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
twine upload dist/*