From f18d4095b0335d27893c580bb79cae21a35102b7 Mon Sep 17 00:00:00 2001 From: amila-ku Date: Sun, 25 Feb 2024 09:14:52 +0000 Subject: [PATCH] add spellcheck action --- .github/workflows/spellcheck.yaml | 12 ++++++++++++ 1 file changed, 12 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 0000000..7cb3b12 --- /dev/null +++ b/.github/workflows/spellcheck.yaml @@ -0,0 +1,12 @@ +name: Spellcheck Action +on: push + +jobs: + build: + name: Spellcheck + runs-on: ubuntu-latest + steps: + # The checkout step + - uses: actions/checkout@v3 + - uses: rojopolis/spellcheck-github-actions@0.36.0 + name: Spellcheck \ No newline at end of file