Skip to content

Implement rules system v2 with markdown format #161

Implement rules system v2 with markdown format

Implement rules system v2 with markdown format #161

Workflow file for this run

name: Validate
on:
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
branches: [main]
workflow_dispatch:
# Minimal permissions for this workflow
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: uv sync --extra dev
- name: Check formatting (ruff)
run: |
uv run ruff format --check src/ tests/
uv run ruff check src/ tests/
- name: Run tests
run: uv run pytest tests/ -v