Fix Alembic migration script to add client_id column to tooldbmodel #261
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 . | |