From 16db5db01027f058dcc2315f06f912fa480664f2 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 16 Jan 2024 00:01:48 -0500 Subject: github: add codespell checker Signed-off-by: Mike Frysinger --- .github/workflows/codespell.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/codespell.yml 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 -- cgit v1.2.3-65-gdbad