From 6882017a02a315de89d22e021a3e7ce34c339aab Mon Sep 17 00:00:00 2001 From: a-rustacean Date: Sun, 12 Nov 2023 22:43:23 +0530 Subject: [PATCH] feat: add typos CI --- .github/workflows/typo.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/typo.yml diff --git a/.github/workflows/typo.yml b/.github/workflows/typo.yml new file mode 100644 index 00000000..30f1f5ba --- /dev/null +++ b/.github/workflows/typo.yml @@ -0,0 +1,23 @@ +# For caching typos +# See https://github.com/crate-ci/typos + +name: Typo + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + RUST_BACKTRACE: "full" + +jobs: + typo: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Spell Check + uses: crate-ci/typos@master