Skip to content

added docs using docsify #5

added docs using docsify

added docs using docsify #5

Workflow file for this run

name: Run unit tests
on:
workflow_call:
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
container: python:3.11-slim
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install -r requirements.txt
python -m pip install -r dev-requirements.txt
- name: Run unit tests
run: python -m coverage run -m pytest -v
- name: Report coverage
run: python -m coverage report --show-missing