You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TRaSH-Guides/.github/workflows/codespell.yml

16 lines
386 B

name: Codespell Check
on: [push, pull_request]
jobs:
codespell:
name: Codespell
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Run Codespell
uses: codespell-project/actions-codespell@v1
with:
only_warn: 1
files: docs/**/*.md
ignore_words_file: .codespellignore