Skip to content

Running MyPy

Running MyPy #53

Workflow file for this run

name: Type-Check (MyPy)
run-name: Running MyPy
on:
push:
branches:
- main
paths:
- code/**
- configs/mypy.ini
pull_request:
workflow_dispatch:
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
make setup
- name: Run MyPy
run: |
make type-check