mirror of
https://github.com/kata0510/Lily58.git
synced 2025-04-29 10:12:58 +00:00
Add spell check with reviewdog (misspell)
This commit is contained in:
parent
1a42b3ce0e
commit
4fad754667
1 changed files with 15 additions and 0 deletions
15
.github/workflows/reviewdog.yml
vendored
Normal file
15
.github/workflows/reviewdog.yml
vendored
Normal 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"
|
Loading…
Reference in a new issue