From b7ea231b1465acead5e8d0eddc4fa96e7f6dfc1d Mon Sep 17 00:00:00 2001 From: J Robert Ray Date: Mon, 26 Feb 2024 14:38:35 -0800 Subject: [PATCH] Add github workflow to run spellcheck Signed-off-by: J Robert Ray --- .github/workflows/cspell.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/cspell.yml diff --git a/.github/workflows/cspell.yml b/.github/workflows/cspell.yml new file mode 100644 index 0000000000..c3fad1c4d4 --- /dev/null +++ b/.github/workflows/cspell.yml @@ -0,0 +1,12 @@ +name: Spellcheck + +on: + pull_request: + push: + +jobs: + spellcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: streetsidesoftware/cspell-action@v5