diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 0000000..07eb27a --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,20 @@ +# Configure via .codespellrc in the root of the project +--- +name: Codespell + +on: + push: + branches: [master] + pull_request: + branches: [master] + +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