From 11babbfdbe2750471ab0831530b4b7fd04d6fc1e Mon Sep 17 00:00:00 2001 From: Clay McLeod Date: Wed, 15 Jan 2025 16:45:43 -0600 Subject: [PATCH] ci: adds spellcheck --- .github/workflows/spelling.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/spelling.yml diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml new file mode 100644 index 0000000..d45aa4c --- /dev/null +++ b/.github/workflows/spelling.yml @@ -0,0 +1,22 @@ +name: Spellcheck + +permissions: + contents: read + +on: + push: + branches: + - main + pull_request: + +env: + CLICOLOR: 1 + +jobs: + check: + runs-on: ubuntu-latest + steps: + - name: Checkout Actions Repository + uses: actions/checkout@v4 + - name: Spell Check Repo + uses: crate-ci/typos@v1.29.4