Skip to content

Uncomment publish step now we've tested #5

Uncomment publish step now we've tested

Uncomment publish step now we've tested #5

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