Skip to content

fix quantity type (#234) #393

fix quantity type (#234)

fix quantity type (#234) #393

Workflow file for this run

# check code types with mypy to be sure the static types are correct and make sense
name: MyPy Check
on:
push:
branches:
- main
- develop
- trunk-merge/**
pull_request:
branches:
- main
- develop
jobs:
mypy-test:
strategy:
matrix:
python-version: [3.11]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Run MyPy
run: mypy src/cript/