Skip to content

Postgress connection standardization #331

Postgress connection standardization

Postgress connection standardization #331

name: Spell Check (codespell)
# Spell-checks the whole repository (docs, templates, Python sources, configs).
# Binary/vendored/generated trees and verified false positives are handled in
# .codespellrc (skip + ignore-words-list). Independent of the test/build
# workflows - a red result here does not block them.
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
permissions:
contents: read
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install codespell
run: |
python -m pip install --upgrade pip
pip install codespell==2.4.2
# Scans the repo root; reads ignore/skip lists from .codespellrc.
- name: Run codespell (whole repository)
run: codespell