From 3eccc3c199cd5defa30dac9a41804c3c11189077 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Tue, 11 Apr 2023 12:33:28 +0200 Subject: [PATCH] ci: add typos check --- .github/workflows/qa.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/qa.yml diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml new file mode 100644 index 0000000..30bddfa --- /dev/null +++ b/.github/workflows/qa.yml @@ -0,0 +1,12 @@ +name: QA + +on: [ push, pull_request ] + +jobs: + spellcheck: + name: Spellcheck + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + # Executes "typos ." + - uses: crate-ci/typos@v1.13.20