From 4b6186ce28f7e95913e1294e973b22de7615e624 Mon Sep 17 00:00:00 2001 From: "James D. Mitchell" Date: Thu, 15 Dec 2022 11:43:56 +0000 Subject: [PATCH] ci: add codespell action --- .github/workflows/codespell.yml | 8 ++++++++ 1 file changed, 8 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..f9521a22 --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,8 @@ +name: codespell +on: [pull_request] +jobs: + codespell: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: codespell-project/actions-codespell@v1.0