]> zoso.dev Git - buffer.git/commitdiff
Add codespell action
authorPeter Newman <peternewman@users.noreply.github.com>
Fri, 7 Aug 2020 11:36:38 +0000 (12:36 +0100)
committerGitHub <noreply@github.com>
Fri, 7 Aug 2020 11:36:38 +0000 (12:36 +0100)
.github/workflows/codespell.yml [new file with mode: 0644]

diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644 (file)
index 0000000..f39b305
--- /dev/null
@@ -0,0 +1,15 @@
+# GitHub Action to automate the identification of common misspellings in text files.
+# https://github.com/codespell-project/actions-codespell
+# https://github.com/codespell-project/codespell
+name: codespell
+on: [push, pull_request]
+jobs:
+  codespell:
+    name: Check for spelling errors
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2
+      - uses: codespell-project/actions-codespell@master
+        with:
+          check_filenames: true
+          skip: ./.git