From 866769171da59b047e92e98e04ba1cc2f9e66e00 Mon Sep 17 00:00:00 2001 From: kubbot <3293172751ysy@gmail.com> Date: Mon, 14 Aug 2023 02:57:39 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20synced=20file(s)=20with=20kubecu?= =?UTF-8?q?b/go-project-layout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 kubbot to synchronize the warehouse --- .github/workflows/typos-check.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/typos-check.yml diff --git a/.github/workflows/typos-check.yml b/.github/workflows/typos-check.yml new file mode 100644 index 0000000..9d48580 --- /dev/null +++ b/.github/workflows/typos-check.yml @@ -0,0 +1,14 @@ +name: Check for typos + +on: [push, pull_request] + +jobs: + check_typos: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Check for typos + run: ./typos ./CONTRIBUTING.md ./README.md + working-directory: ./ +