Skip to content

Update README.md

Update README.md #10

Workflow file for this run

name: CI Workflow
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python 3.12.1
uses: actions/setup-python@v2
with:
python-version: 3.12.1
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies with poetry
run: poetry install
- name: Run pytest
run: poetry run pytest