Skip to content

fix: vale working on ubuntu-latest #13

fix: vale working on ubuntu-latest

fix: vale working on ubuntu-latest #13

Workflow file for this run

name: vale
on: [pull_request]
jobs:
vale:
name: runner / vale
# workaround for https://github.com/errata-ai/vale-action/issues/128
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
venv="$HOME/.local/share/venv"
python3 -m venv "$venv"
echo "$venv/bin" >> $GITHUB_PATH
- uses: errata-ai/vale-action@v2
with:
files: '["community", "versioned_docs"]'
debug: true
fail_on_error: true
reporter: github-pr-check
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}