Skip to content

Update readme

Update readme #140

Workflow file for this run

name: run_tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
if: "!contains(github.event.head_commit.message, 'Bump version')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
cache: 'pip'
- name: Install dependencies
run: python -m pip install -e .[test]
- name: Test with pytest
run: pytest -v --cov