Skip to content

perf(sql): Add COLLATE NOCASE to some indexes on ahb_hierarchy_materialized for faster search #525

perf(sql): Add COLLATE NOCASE to some indexes on ahb_hierarchy_materialized for faster search

perf(sql): Add COLLATE NOCASE to some indexes on ahb_hierarchy_materialized for faster search #525

Workflow file for this run

name: "Formatting"
on:
push:
branches: [main]
pull_request: {}
jobs:
black:
runs-on: ubuntu-latest
strategy:
matrix:
tool: ["black", "isort"]
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[formatting]
- name: ${{ matrix.tool }} Code Formatter
run: |
${{ matrix.tool }} . --check