Skip to content

upgrade to phpunit 10 and adjust to FOSHttpCache strict typing #227

upgrade to phpunit 10 and adjust to FOSHttpCache strict typing

upgrade to phpunit 10 and adjust to FOSHttpCache strict typing #227

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