From 841c31daf4af42a195d3c5c5366b90363df2c2e7 Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Mon, 20 Sep 2021 19:02:53 +0200 Subject: [PATCH] Added spell check to CI --- .github/workflows/build_all.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 382c0ba..efc4f94 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -271,3 +271,15 @@ jobs: with: name: sdrpp_all path: sdrpp_all/ + + check_spelling: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Install codespell + run: apt update -y && apt install -y codespell + + - name: Running codespell + run: cd $GITHUB_WORKSPACE && codespell -q 2 || true