Skip to content

bump version again

bump version again #89

Workflow file for this run

name: PyTest
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
container: python:3.9
steps:
- uses: actions/checkout@v3
- name: Install poetry dependencies
run: pip install poetry
- name: Install project
run: poetry install
- name: Run test suite
run: poetry run pytest -v