Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Update docs

Update docs #60

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Linting
run: |
pip install pre-commit
pre-commit run --all-files