Skip to content

chore:update AGENTS.md #7

chore:update AGENTS.md

chore:update AGENTS.md #7

Workflow file for this run

name: Linting
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
jobs:
python-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Run Ruff Check
run: uv run ruff check .
- name: Run Ruff Format Check
run: uv run ruff format --check .
markdown-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Markdownlint
run: npx markdownlint-cli2 "**/*.md"