diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml new file mode 100644 index 0000000..56a1c46 --- /dev/null +++ b/.github/workflows/lint.yaml @@ -0,0 +1,15 @@ +name: typos + +on: [pull_request] + +jobs: + check-typo: + name: Spell Check with Typos + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Check for Typos + uses: crate-ci/typos@v1.15.5 \ No newline at end of file