Postgress connection standardization #331
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |