Skip to content

Merge pull request #619 from FriendsOfSymfony/phpunit-10 #229

Merge pull request #619 from FriendsOfSymfony/phpunit-10

Merge pull request #619 from FriendsOfSymfony/phpunit-10 #229

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
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade setuptools
python -m pip install -r Resources/doc/requirements.txt
- name: Run spell check
run: |
make -C Resources/doc/ spelling
if [[ -s "Resources/doc/_build/spelling/output.txt" ]]; then echo "\nSpelling errors found\n" && cat "Resources/doc/_build/spelling/output.txt"; fi
if [[ -s "Resources/doc/_build/spelling/output.txt" ]]; then false; fi