Skip to content

Commit

Permalink
add vale style check
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffcline committed Jun 11, 2024
1 parent 6d62a48 commit 6433bb2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/vale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Style check

on:
pull_request:
workflow_dispatch:

jobs:
style-job:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3

- name: Run Vale
uses: errata-ai/vale-action@reviewdog
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
fail_on_error: false
reporter: github-pr-check
filter_mode: added
vale_flags: "--no-exit"
version: 2.28.0
files: latest/bpg
continue-on-error: true

0 comments on commit 6433bb2

Please sign in to comment.