From d11d5cd6b46dfcc01cdd1ce314339e182ad7cebc Mon Sep 17 00:00:00 2001 From: life <657023321@qq.com> Date: Mon, 17 Jun 2024 16:20:55 +0800 Subject: [PATCH] Create github_ci.yml test typos --- .github/workflows/github_ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/github_ci.yml diff --git a/.github/workflows/github_ci.yml b/.github/workflows/github_ci.yml new file mode 100644 index 0000000..c7d9499 --- /dev/null +++ b/.github/workflows/github_ci.yml @@ -0,0 +1,18 @@ +name: CI checks + +on: + push: + branches: + - master + +jobs: + typos-check: + name: TyposCheck + timeout-minutes: 3 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: crate-ci/typos@v1.22.7 + with: + config: ./typos.toml + isolated: true