aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYaroslav Halchenko <debian@onerussian.com>2023-01-23 10:40:23 -0500
committerYaroslav Halchenko <debian@onerussian.com>2023-01-23 10:40:23 -0500
commit92f632114b4b6b3892d7872b21844283631c73c4 (patch)
tree2a22cb267c5380948cd9e3571c20298b6058bafd
parent1af335f9132ed441d0ee89af5e494bba9a401377 (diff)
downloadgit-bug-92f632114b4b6b3892d7872b21844283631c73c4.tar.gz
Add github workflow for codespell
-rw-r--r--.github/workflows/codespell.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644
index 00000000..5768d7c6
--- /dev/null
+++ b/.github/workflows/codespell.yml
@@ -0,0 +1,19 @@
+---
+name: Codespell
+
+on:
+ push:
+ branches: [master]
+ pull_request:
+ branches: [master]
+
+jobs:
+ codespell:
+ name: Check for spelling errors
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Codespell
+ uses: codespell-project/actions-codespell@v1