Skip to content

Fix badges in readme #74

Fix badges in readme

Fix badges in readme #74

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
name: Tests & Linting
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: "actions/checkout@v2"
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run pytest
run: pytest