diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml new file mode 100644 index 0000000..5a9a7f5 --- /dev/null +++ b/.github/workflows/spelling.yml @@ -0,0 +1,25 @@ +name: "Spelling" + +on: + pull_request: null + push: + branches: + - "master" + +permissions: {} + +concurrency: + group: "${{ github.workflow }}-${{ github.ref }}" + cancel-in-progress: true + +jobs: + typos_check: + name: "Typos" + runs-on: "ubuntu-latest" + steps: + - + name: "Checkout repository" + uses: "actions/checkout@v4" + - + name: "Search for misspellings" + uses: "crate-ci/typos@master"