From 620df09dcb4506ede95c3672742fa3dc0ad3c5e0 Mon Sep 17 00:00:00 2001 From: mxxntype <59417007+mxxntype@users.noreply.github.com> Date: Sun, 21 Jan 2024 02:04:03 +0300 Subject: [PATCH] ci: Add `typos` workflow --- .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..e858317 --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,15 @@ +name: Typos + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: typos-action + uses: crate-ci/typos@v1.17.2 +