fix: vale-ignore for reST
#56
Workflow file for this run
This file contains hidden or 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: Vale + Pytest | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| # Allow manual trigger | |
| workflow_dispatch: {} | |
| permissions: | |
| contents: read | |
| jobs: | |
| tests: | |
| name: Pytest (Vale rules) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [ '3.10', '3.12' ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| - name: Create an environment with Python dependencies | |
| working-directory: tests | |
| run: | | |
| python3 -m venv .venv | |
| . .venv/bin/activate | |
| pip install -e . | |
| - name: Run pytest suite | |
| working-directory: tests | |
| env: | |
| # Set to 1 once manifest covers ALL style rules to enforce coverage. | |
| VALE_ENFORCE_COVERAGE: 0 | |
| run: | | |
| . .venv/bin/activate | |
| make run |