Skip to content

🪶 Switching back to poetry. #108

🪶 Switching back to poetry.

🪶 Switching back to poetry. #108

Workflow file for this run

name: Type Checking
on: [push]
jobs:
type-check:
name: 👨‍⚕️ Type Checking
runs-on: ubuntu-latest
steps:
- name: 🔔 Check out
uses: actions/checkout@v3
- name: 🏗️ python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: ⬇️ Python Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.4
installer-parallel: true
- name: ⬇️ Python Dependencies
run: poetry install --sync
- name: 📦 Install type stubs
run: poetry run mypy src --install-types --non-interactive
- name: 🏃 mypy
run: poetry run mypy src