From 2d2b2b43450076ebde677322cfbdb6f593500733 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Sun, 9 Feb 2025 00:43:39 +0545 Subject: [PATCH] Create typos.yml Co-Authored-By: aayush <177418358+aayushrg7@users.noreply.github.com> Co-Authored-By: Smriti Bhandari <187972284+smritics@users.noreply.github.com> Co-Authored-By: aayushxvf <147874416+aayushxvf@users.noreply.github.com> --- .github/workflows/typos.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/typos.yml diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 0000000..35a21bf --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,15 @@ +name: Check for typos + +on: + [push, pull_request, workflow_dispatch] + +jobs: + check-typos: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - run: git fetch origin ${{ github.base_ref }} + + - name: Run spellcheck + uses: crate-ci/typos@v1.29.5