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 #42

Workflow file for this run

name: Test docs
on: [pull_request, push]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Build docs
run: cd docs && poetry run make html