since version 3, the factories are the PSR-17 factories #415
Workflow file for this run
  
    
      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: 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 |