Skip to content

(maint) Add spell check linting to repository #3

(maint) Add spell check linting to repository

(maint) Add spell check linting to repository #3

Workflow file for this run

name: Linting
on:
push:
branches:
- master
pull_request:
jobs:
misspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: haya14busa/action-cond@v1
id: reporter
with:
cond: ${{ github.event_name == 'pull_request' }}
if_true: "github-pr-review"
if_false: "github-check"
- name: Run misspell with reviewdog
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.github_token }}
reporter: ${{ steps.reporter.outputs.value }}
level: warning
locale: "US"
path: |
input
src
languagetool:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: haya14busa/action-cond@v1
id: reporter
with:
cond: ${{ github.event_name == 'pull_request' }}
if_true: "github-pr-review"
if_false: "github-check"
- name: Run LanguageTool with reviewdog
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.github_token }}
reporter: ${{ steps.reporter.outputs.value }}
level: warning # Only valid if running on a commit, ie through push to master branch
language: en-US