From 6022446a05c0095b94f1b8e0f71295caea87bda0 Mon Sep 17 00:00:00 2001 From: a-rustacean Date: Fri, 3 Nov 2023 20:05:25 +0530 Subject: [PATCH] Add typos CI --- .github/workflows/typo.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..4f42da57 --- /dev/null +++ b/.github/workflows/typo.yml @@ -0,0 +1,20 @@ +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: Check Typos + uses: crate-ci/typos@master