Adds changes from #1837 to all products and versions #1312
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: reviewdog | |
on: [pull_request] | |
jobs: | |
vale: | |
name: runner / vale | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install docutils in a virtual environment | |
run: | | |
python -m venv venv | |
source venv/bin/activate | |
pip install docutils | |
- uses: errata-ai/vale-action@reviewdog | |
with: | |
fail_on_error: false | |