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