Skip to content

Refactor code quality #2

Refactor code quality

Refactor code quality #2

Workflow file for this run

name: Type Checking
on:
push:
branches: [ master ]
pull_request:
branches: [ '*' ]
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run mypy
run: |
mypy powerplantmatching