Skip to content

fix cs, phpstan and spellcheck #385

fix cs, phpstan and spellcheck

fix cs, phpstan and spellcheck #385

Workflow file for this run

name: Spellcheck
on:
push:
branches:
- "*.x"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install --upgrade setuptools
python -m pip install -r doc/requirements.txt
- name: Run spell check
run: |
make -C doc/ spelling
if [[ -s "doc/_build/spelling/output.txt" ]]; then echo "\nSpelling errors found\n" && cat "doc/_build/spelling/output.txt"; fi
if [[ -s "doc/_build/spelling/output.txt" ]]; then false; fi