Merge pull request #212 from nextcloud/enh/209/set-up-spellcheck

set up spellcheck
This commit is contained in:
Simon L 2022-02-11 11:14:55 +01:00 committed by GitHub
commit 96b381bcab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

18
.github/workflows/spellcheck.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: 'Spellcheck'
on:
pull_request:
push:
jobs:
spellcheck:
name: Check spelling
runs-on: ubuntu-latest
steps:
- name: spelling or typos
uses: actions/checkout@v2
- name: misspell
uses: reviewdog/action-misspell@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
locale: "US"