Skip to content

fix: Run database server #11

fix: Run database server

fix: Run database server #11

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # This will install the latest version of Python 3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff black
- name: Run lint script
run: bash scripts/lint.sh