mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Merge pull request #1830 from profanity-im/feat/codspellci
Add spellcheck to CI
This commit is contained in:
commit
f239f5a071
14
.github/workflows/main.yml
vendored
14
.github/workflows/main.yml
vendored
@ -46,3 +46,17 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
clang-format-version: '16'
|
clang-format-version: '16'
|
||||||
check-path: 'src'
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user