Skip to content

Fix typing issues

Fix typing issues #21

Workflow file for this run

name: Style and typing checks
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install and configure Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install --no-interaction
- name: Lint with ruff
run: |
poetry run ruff check
- name: Check types with mypy
run: |
poetry run mypy .