From 0ff2b466ebbf79e2d89478c0c13256beec9c36c5 Mon Sep 17 00:00:00 2001 From: Paul d'Aoust Date: Mon, 5 Feb 2024 14:29:47 -0800 Subject: [PATCH] add cspell GH workflow --- .github/workflows/spellcheck.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/spellcheck.yaml diff --git a/.github/workflows/spellcheck.yaml b/.github/workflows/spellcheck.yaml new file mode 100644 index 000000000..656286bb0 --- /dev/null +++ b/.github/workflows/spellcheck.yaml @@ -0,0 +1,11 @@ +name: 'Check spelling' +on: # rebuild any PRs and main branch changes + pull_request: + push: + +jobs: + spellcheck: # run the action + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: streetsidesoftware/cspell-action@v5 \ No newline at end of file