Skip to content

Enable mypy checks

Enable mypy checks #16

Workflow file for this run

name: Lint
on: [pull_request]
permissions: read-all
jobs:
invoke_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: "Upgrade pip"
run: "pip install --upgrade pip"
- name: "Print python version"
run: "python --version"
- name: "Install package"
run: pip install ".[dev]"
- name: "env debug"
run: ls -R
- name: "Run lint checks"
run: invoke lint