From: Yaroslav Halchenko Date: Fri, 22 Dec 2023 00:14:49 +0000 (-0500) Subject: Add github action to codespell master on push and PRs X-Git-Tag: v0.11.0~54^2~5 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=be1a44e1c78958e4097ff611bf2d0b79a91aeebd;p=thirdparty%2Fsnapper.git Add github action to codespell master on push and PRs --- diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 00000000..7373affc --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,22 @@ +--- +name: Codespell + +on: + push: + branches: [master] + pull_request: + branches: [master] + +permissions: + contents: read + +jobs: + codespell: + name: Check for spelling errors + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Codespell + uses: codespell-project/actions-codespell@v2