Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Initial
  • Loading branch information
StanFromIreland committed May 29, 2025
commit 7d6d93abda24d0a49a1f6f4d76c28e32ed945e6b
18 changes: 18 additions & 0 deletions .github/workflows/update-lint-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,24 @@ jobs:
- uses: rffontenelle/sphinx-lint-problem-matcher@v1.0.0
- run: sphinx-lint

spellcheck:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [ 3.14 ]
needs: [ 'update' ]
continue-on-error: true
steps:
- uses: actions/setup-python@master
with:
python-version: 3
- run: pip install pospell
- uses: actions/checkout@master
with:
ref: ${{ matrix.version }}
- run: pospell --langauge pl --glob '**/*.po'

build:
runs-on: ubuntu-latest
strategy:
Expand Down