Skip to content

Commit

Permalink
try review dog pr-check
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalexiei committed Nov 22, 2024
1 parent 786cab5 commit 897fc47
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/spell-checking-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Spell Checker 2

on:
pull_request:

jobs:
spell_checking:
name: LanguageTool
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Review dog languagetool
uses: reviewdog/action-languagetool@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].
reporter: 'github-pr-check'
# Change reporter level if you need.
level: 'error'
patterns: '**/*.md **/*.txt **/*.mdx'
#enabled_categories: 'STYLE,PLAIN_ENGLISH,WHITESPACE_RULE,EN_QUOTES,DASH_RULE,WORD_CONTAINS_UNDERSCORE,UPPERCASE_SENTENCE_START,ARROWS,COMMA_PARENTHESIS_WHITESPACE,UNLIKELY_OPENING_PUNCTUATION,SENTENCE_WHITESPACE,EN_UNPAIRED_BRACKETS,PHRASE_REPETITION,PUNCTUATION_PARAGRAPH_END'
disabled_categories: ''
disabled_rules: ''

0 comments on commit 897fc47

Please sign in to comment.