From c741b3f5d7eb73f27a69644a1d6e1098918462d6 Mon Sep 17 00:00:00 2001 From: Alexander Sharov Date: Thu, 4 Jan 2024 20:26:42 +0100 Subject: [PATCH] feat: add codespell action --- .github/workflows/codespell.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..8578721 --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,22 @@ +--- +name: Codespell + +on: + push: + branches: + - 'main' + pull_request: + branches: + - 'main' + workflow_dispatch: + +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