Fix phpstan/phpstan#13669: Offset -1|0|1|2 might not exist on non-empty-array<-1|0|1|2, int>. #10557
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
| # https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
| name: "Spelling" | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - "2.1.x" | |
| jobs: | |
| typos: | |
| name: "Check for typos" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v4 | |
| - name: "Check for typos" | |
| uses: "crate-ci/typos@v1" | |
| with: | |
| files: "README.md src/" |