From 04a95c641eb448ef1d91503f59fc7e12e64320d0 Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Fri, 8 Dec 2023 20:52:50 +0100 Subject: [PATCH] Add codespell action GitOrigin-RevId: a57ee94ceaf6087640f0668038b1f1e393aad09e --- .github/workflows/codespell.yml | 15 +++++++++++++++ 1 file changed, 15 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..65a0d8d --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,15 @@ +name: Codespell + +on: + #pull_request: {} + push: {} + +jobs: + codespell: + name: Codespell + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v4 + + - uses: codespell-project/actions-codespell@v2