diff options
author | Michael Vetter <jubalh@iodoru.org> | 2023-04-14 22:18:25 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2023-04-15 12:03:57 +0200 |
commit | 181772bd5c7e46c3f113d948edfc97a89b703523 (patch) | |
tree | a7c9f82489ca63aeab2bcda37a182f00d7e82bc1 | |
parent | 6eacfcb96e06c90570557361037b08f1a919eb2e (diff) | |
download | profani-tty-181772bd5c7e46c3f113d948edfc97a89b703523.tar.gz |
Add spellcheck to CI
-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 |