tldr/.github/workflows/codespell.yml

19 lines
403 B
YAML
Raw Normal View History

2022-09-18 22:24:26 +01:00
name: Codespell
on: ['pull_request']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
2022-09-18 22:24:26 +01:00
with:
ignore_words_file: .github/codespell-ignore
# Exit with 0 regardless of typos.
only_warn: 1
# Only check English files from the pages directory
path: pages/*