1
0
Fork 0
mirror of https://github.com/kata0510/Lily58.git synced 2025-04-29 02:02:59 +00:00

Add spell check with reviewdog (misspell)

This commit is contained in:
Ben 2021-09-04 17:41:52 +02:00 committed by GitHub
parent 1a42b3ce0e
commit 4fad754667
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
.github/workflows/reviewdog.yml vendored Normal file
View file

@ -0,0 +1,15 @@
# .github/workflows/reviewdog.yml
name: reviewdog
on: [pull_request]
jobs:
misspell:
name: runner / misspell
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v1
- name: misspell
uses: reviewdog/action-misspell@v1
with:
github_token: ${{ secrets.github_token }}
locale: "UK"