aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2024-01-16 00:01:48 -0500
committerMike Frysinger <vapier@gentoo.org>2024-01-16 00:01:48 -0500
commit16db5db01027f058dcc2315f06f912fa480664f2 (patch)
tree4c0c1a658c0e439dee53b1c49d26eb1eeb4dc9a5
parentfix various typos found w/codespell (diff)
downloadpax-utils-16db5db01027f058dcc2315f06f912fa480664f2.tar.gz
pax-utils-16db5db01027f058dcc2315f06f912fa480664f2.tar.bz2
pax-utils-16db5db01027f058dcc2315f06f912fa480664f2.zip
github: add codespell checker
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r--.github/workflows/codespell.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644
index 0000000..605d2bb
--- /dev/null
+++ b/.github/workflows/codespell.yml
@@ -0,0 +1,13 @@
+# GitHub actions workflow.
+# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
+
+name: Codespell
+
+on: [push, pull_request]
+
+jobs:
+ codespell:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: codespell-project/actions-codespell@v2