Skip to content

v0.1.30 Extended device list #50

v0.1.30 Extended device list

v0.1.30 Extended device list #50

Workflow file for this run

name: Build and Upload Python Package
on:
release:
types: [published]
permissions:
contents: read
jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest build wheel
- name: Run tests
run: |
pip install -r requirements.txt
pytest tests
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
username: __token__
password: ${{ secrets.PYPI_TOKEN }}