diff options
-rw-r--r-- | .github/workflows/main.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 89a46e9e..ee0c48c9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,3 +46,17 @@ jobs: with: clang-format-version: '16' check-path: 'src' + + spell-check: + runs-on: ubuntu-22.04 + name: Check spelling + continue-on-error: true + steps: + - uses: actions/checkout@v2 + - name: install dependencies + run: | + sudo apt update + sudo apt install -y --no-install-recommends codespell + - name: Check spelling + run: | + codespell |