Skip to content

add docs (#23)

add docs (#23) #12

Workflow file for this run

name: type-check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install mypy types-setuptools
- name: Run type check
run: |
mypy --strict .