diff --git a/.github/workflows/typos.yaml b/.github/workflows/typos.yaml new file mode 100644 index 0000000..53e7f21 --- /dev/null +++ b/.github/workflows/typos.yaml @@ -0,0 +1,24 @@ +name: Spell check with typos + +on: + push: + branches: ["main"] + pull_request: + branches: ["**"] + +permissions: {} + +jobs: + typos: + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Checkout repository + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + persist-credentials: false + + - name: Run typos + uses: crate-ci/typos@7c572958218557a3272c2d6719629443b5cc26fd # v1.45.2 +