Skip to content

bump to version 1.0.1 (#16) #35

bump to version 1.0.1 (#16)

bump to version 1.0.1 (#16) #35

Workflow file for this run

name: Type Checking
on:
pull_request:
branches: [ main, development ]
push:
branches: [ main, development ]
jobs:
mypy:
name: MyPy Type Checking
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Project Dependencies
run: |
pip install -e .
- name: Install MyPy
run: |
pip install -r code_tools/mypy/requirements.txt
- name: Run MyPy
run: |
chmod +x code_tools/mypy/check_all.sh
./code_tools/mypy/check_all.sh