Skip to content

doc(README): cleanliness for #1

doc(README): cleanliness for

doc(README): cleanliness for #1

Workflow file for this run

name: Test
on: push
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependences
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: pytest
run: pytest