Skip to content

Drop migrations

Drop migrations #30

name: Backend Lint Check
on:
workflow_dispatch:
pull_request:
branches: [main]
paths:
- "backend/**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Lint
run: |
cd backend
pip install ruff
ruff check