Add "Writing a custom Behat formatter" cookbook #14
Workflow file for this run
This file contains 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: Check Docs | |
on: | |
push: | |
branches: [v3.0] | |
pull_request: null | |
jobs: | |
sphinx: | |
name: Sphinx reStructuredText validity | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install sphinx-lint | |
run: | | |
pip install --user sphinx-lint | |
- name: Check Sphinx document sources | |
run: | | |
git ls-files --cached -z -- '*.rst' \ | |
| xargs --null -- python -m sphinxlint --enable all --max-line-length 120 | |
typos: | |
name: Typos | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Search for misspellings | |
uses: crate-ci/typos@master |