Skip to content

fix(orfs): use updated techmap for latches #255

fix(orfs): use updated techmap for latches

fix(orfs): use updated techmap for latches #255

Workflow file for this run

name: Mypy Type Checking
on:
push:
pull_request:
workflow_dispatch:
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install mypy
run: |
pip install mypy
- name: Install type packages
run: |
yes | mypy . --install-types
continue-on-error: true
- name: Run mypy
run: |
mypy cells.py config.py configure.py documentation.py git_utils.py markdown_utils.py project.py rom.py shuttle.py --check-untyped-defs