Skip to content

Full Linting

Full Linting #1

Workflow file for this run

name: Full Linting
on:
workflow_dispatch:
jobs:
misspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup ReviewDog
uses: reviewdog/[email protected]
- name: Run misspell with reviewdog
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.github_token }}
reporter: 'github-check'
level: warning
locale: "US"
path: |
input
src
filter_mode: nofilter
languagetool:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup ReviewDog
uses: reviewdog/[email protected]
- name: Run LanguageTool with reviewdog
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.github_token }}
reporter: 'github-check'
level: warning # Only valid if running on a commit, ie through push to master branch
language: en-US