Skip to content

Use official action for uploading package to PyPi #77

Use official action for uploading package to PyPi

Use official action for uploading package to PyPi #77

Workflow file for this run

name: Run unit tests and lint
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.9, 3.12]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: tox -e py