aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorYaroslav Halchenko <debian@onerussian.com>2023-03-29 14:47:13 -0400
committerGitHub <noreply@github.com>2023-03-29 19:47:13 +0100
commit0f8cb2888311868be83c208fef26d2139af41712 (patch)
tree9327f7ae13fc2c6907e8eb21051e94bf0ebeab21 /.github/workflows
parented9be128370c93b93895bb1bb61cc1e606277613 (diff)
downloadlibfuse-0f8cb2888311868be83c208fef26d2139af41712.tar.gz
Fix typos and configure spellcheck for PRs
Diffstat (limited to '.github/workflows')
-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 0000000..5768d7c
--- /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