diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 000000000..1d107c821 --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,19 @@ +name: Typo Check + +on: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + typos: + name: Check for typos + permissions: + contents: read + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Check for typos + uses: crate-ci/typos@v1.39.0