emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/url-scgi cf05aac1cd 2/2: Add codespell action for GitHu


From: ELPA Syncer
Subject: [elpa] externals/url-scgi cf05aac1cd 2/2: Add codespell action for GitHub CI
Date: Fri, 23 Dec 2022 23:58:12 -0500 (EST)

branch: externals/url-scgi
commit cf05aac1cd901247f0af1be14bd970465b76844c
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>

    Add codespell action for GitHub CI
---
 .github/workflows/codespell.yml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644
index 0000000000..3f82a7af3d
--- /dev/null
+++ b/.github/workflows/codespell.yml
@@ -0,0 +1,21 @@
+# 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 ]
+permissions: {}
+jobs:
+  codespell:
+    name: Check for spelling errors
+    runs-on: ubuntu-latest
+    steps:
+      - name: Checkout url-scgi
+        uses: actions/checkout@v3
+        with:
+          persist-credentials: false
+
+      - name: Run codespell
+        uses: codespell-project/actions-codespell@master
+        with:
+          check_filenames: true
+          builtin: clear,rare



reply via email to

[Prev in Thread] Current Thread [Next in Thread]