diff options
author | Michael Vetter <jubalh@iodoru.org> | 2023-04-15 12:18:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-15 12:18:41 +0200 |
commit | f239f5a071add38f78675ef4ff2d2b67503eceba (patch) | |
tree | 76ec30eaa4116004e0522a26ed775be10aa3629b | |
parent | 951df64a43673d8fc5b8f851fd3fe9b9ea15b0cf (diff) | |
parent | 181772bd5c7e46c3f113d948edfc97a89b703523 (diff) | |
download | profani-tty-f239f5a071add38f78675ef4ff2d2b67503eceba.tar.gz |
Merge pull request #1830 from profanity-im/feat/codspellci
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 |