Skip to content

Fix Alembic migration script to add client_id column to tooldbmodel #261

Fix Alembic migration script to add client_id column to tooldbmodel

Fix Alembic migration script to add client_id column to tooldbmodel #261

name: Run Static Analysis
on: [push, pull_request]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.12.11
architecture: x64
- name: Install requirements
run: pip install -r requirements_dev.txt
- name: Linting with Flake8
run: flake8
- name: Linting with Black
run: black . --check
- name: Linting with Isort
run: isort . --check-only
- name: Type checking with MyPy
run: mypy .