From 3e56bdb07a9704407c8dee8d62c8ea069a39768d Mon Sep 17 00:00:00 2001 From: Krisztian Litkey Date: Tue, 27 Aug 2024 14:36:18 +0300 Subject: [PATCH] .github: add codespell workflow. Signed-off-by: Krisztian Litkey --- .github/workflows/codespell.yml | 18 ++++++++++++++++++ 1 file changed, 18 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 00000000..1b67c269 --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,18 @@ +name: Codespell + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + codespell: + name: Check for spelling errors + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Codespell + uses: codespell-project/actions-codespell@v2 \ No newline at end of file