Skip to content

fix: vale-ignore for reST #56

fix: vale-ignore for reST

fix: vale-ignore for reST #56

Workflow file for this run

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