Skip to content

Fix update column

Fix update column #325

Workflow file for this run

name: Type Checking
on: [push, pull_request]
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --with dev
- name: Install mypy 1.9.0
run: poetry add mypy==1.9.0 --dev
- name: Run mypy
run: poetry run mypy fastcrud --config-file mypy.ini