Skip to content

Feature: TableInfo now allows either rows or (n_rows AND `get_c… #110

Feature: TableInfo now allows either rows or (n_rows AND `get_c…

Feature: TableInfo now allows either rows or (n_rows AND `get_c… #110

Workflow file for this run

name: Lint with MyPy
on: [push, pull_request]
jobs:
mypy:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
env:
PIP_EXTRA_INDEX_URL: https://aa:${{ secrets.PYPI_PASSWORD }}@pypi.autoactuary.com/simple
run: |
python -m pip install --upgrade pip
python -m pip install -c ci-constraints.txt . -r mypy-requirements.txt -r test-requirements.txt
- name: Run MyPy
run: |
mypy .