Skip to content

Automatically publish to PYPI on release #13

Automatically publish to PYPI on release

Automatically publish to PYPI on release #13

Workflow file for this run

name: Tests
on:
- push
- pull_request
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- name: Install dependencies
run: python -m pip install ".[test]"
- name: Test with pytest
run: pytest