From 3eadd332bb54ac5ebfc4e987bc52c1922216432b Mon Sep 17 00:00:00 2001 From: Marius Messerschmidt Date: Sat, 18 Nov 2023 15:46:24 +0100 Subject: [PATCH] Workflows: add spellcheck job --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec853235a..12779f12d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,20 @@ on: - pull_request jobs: + spellcheck: + runs-on: ubuntu-latest + + steps: + - name: checkout repository + uses: actions/checkout@v3 + + - name: Install codespell + shell: bash + run: sudo apt update && sudo apt install -y codespell + + - name: Run Spellchecker + run: codespell + linux-buildtest: name: Linux build test permissions: