[CORE-10689] Adding information on how to enable NodeLocal DNSCache with the BPF #1397
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 | |