diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 0000000..b3fe567 --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,10 @@ +name: Check for typos +on: [push, pull_request] +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run typos command + run: ./typos ./CONTRIBUTING.md ./README.md +