Skip to content

fix: 修复 create_pages_from_plan.py 调用 pipeline_charts.py 的路径错误 #6

fix: 修复 create_pages_from_plan.py 调用 pipeline_charts.py 的路径错误

fix: 修复 create_pages_from_plan.py 调用 pipeline_charts.py 的路径错误 #6

Workflow file for this run

name: CI
on:
push:
branches: ["main", "feat/**"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --dev --no-install-project
- name: Lint (ruff)
run: uv run ruff check tests/
- name: Format check (ruff)
run: uv run ruff format --check tests/
- name: Unit tests
run: uv run pytest tests/unit/ -v --tb=short