Skip to content

Feat: Validators doc generation #115

Feat: Validators doc generation

Feat: Validators doc generation #115

Workflow file for this run

name: Pull Request Review & Merge
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
push:
branches: [main]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: install poetry
run: pip install poetry==1.6
- name: install dependencies
run: poetry install --with linting,dev
- name: linting
run: make lint
- name: Doc generation
run: |
make generate-markdown && git add ./docs/output_validator_list.md && git diff --cached --exit-code