Skip to content

ci: add a GitHub Actions to check YAML files + fix them #116

ci: add a GitHub Actions to check YAML files + fix them

ci: add a GitHub Actions to check YAML files + fix them #116

Workflow file for this run

---
name: Syntax Validation
on: [push, workflow_dispatch]
jobs:
syntax-check:
name: vale
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@main
- name: Validate the syntax
uses: errata-ai/vale-action@reviewdog
with:
fail_on_error: true
vale_flags: "--config=.vale.ini"