Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Update README.md

Update README.md #105

Workflow file for this run

name: Test
on: [pull_request, push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: "3.10"
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest tests/*