Skip to content

Fix artifact names for PyPI publishing (#12) #21

Fix artifact names for PyPI publishing (#12)

Fix artifact names for PyPI publishing (#12) #21

Workflow file for this run

name: Run Tests
on:
# allows running workflows manually
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up virtual environment
run: |
python -m pip install -U pip
python -m venv venv
source venv/bin/activate
- name: Install
run: |
python -m pip install .[test]
- name: Test
run: python -m pytest -ra tests