From 03bcf01e1ccdfaf3e8b3b46e5deaf99f0abfb0ee Mon Sep 17 00:00:00 2001 From: ShootingStarDragons Date: Thu, 12 Mar 2026 21:46:35 +0900 Subject: [PATCH] feat: add typos ci I think we should not induce typos again. Typos ci is a generally used ci to check the typos. I recommend to enable it, in order not to induce typos in the future --- .github/workflows/typos.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..f11d1d0 --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,19 @@ +--- +# yamllint disable rule:line-length +name: check_typos + +on: # yamllint disable-line rule:truthy + push: + pull_request: + branches: + - '**' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v6 + + - name: typos-action + uses: crate-ci/typos@v1.43.4