f3d80b4628
Auto Release / auto-release (push) Failing after 1s
CI / lint (push) Failing after 0s
CI / screenshot-quality (push) Failing after 3s
CI / pr-policy (push) Has been skipped
CI / test (3.11) (push) Failing after 0s
CI / test (3.12) (push) Failing after 0s
CI / test (3.13) (push) Failing after 3s
CI / coverage (push) Failing after 1s
Legibility / legibility (push) Failing after 3s
141 lines
5.2 KiB
YAML
141 lines
5.2 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
cache: pip
|
|
cache-dependency-path: |
|
|
pyproject.toml
|
|
uv.lock
|
|
- run: pip install ruff
|
|
- run: ruff check .
|
|
- run: ruff format --check .
|
|
- name: Collect changed files for PR policy
|
|
if: github.event_name == 'pull_request'
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
|
run: gh pr view "$PR_NUMBER" --json files --jq '.files[].path' > /tmp/pr-changed-files.txt
|
|
- name: Validate PR body policy
|
|
if: github.event_name == 'pull_request'
|
|
run: python scripts/check_pr_policy.py --event-path "$GITHUB_EVENT_PATH" --changed-files-file /tmp/pr-changed-files.txt
|
|
|
|
screenshot-quality:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
- name: Collect screenshot-related changes
|
|
id: screenshot_changes
|
|
if: github.event_name == 'pull_request'
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
|
run: |
|
|
gh pr view "$PR_NUMBER" --json files --jq '.files[].path' > /tmp/pr-changed-files.txt
|
|
if grep -Eq '^(\.agents/evidence/pr/|scripts/check_screenshots\.(py|sh))' /tmp/pr-changed-files.txt; then
|
|
echo "should_run=true" >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo "should_run=false" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
- name: Validate screenshot evidence quality
|
|
if: github.event_name != 'pull_request' || steps.screenshot_changes.outputs.should_run == 'true'
|
|
run: python scripts/check_screenshots.py .agents/evidence/pr/
|
|
- name: Skip unchanged screenshot evidence
|
|
if: github.event_name == 'pull_request' && steps.screenshot_changes.outputs.should_run != 'true'
|
|
run: echo "No screenshot evidence or screenshot checker changes in this PR; skipping full screenshot scan."
|
|
|
|
pr-policy:
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name == 'pull_request'
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
- name: Collect changed files
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
|
run: gh pr view "$PR_NUMBER" --json files --jq '.files[].path' > /tmp/pr-changed-files.txt
|
|
- name: Validate PR body policy
|
|
run: python scripts/check_pr_policy.py --event-path "$GITHUB_EVENT_PATH" --changed-files-file /tmp/pr-changed-files.txt
|
|
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.11", "3.12", "3.13"]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: pip
|
|
cache-dependency-path: |
|
|
pyproject.toml
|
|
uv.lock
|
|
- run: pip install -e ".[dev]"
|
|
- run: python -m pytest tests/ -x --timeout=60
|
|
|
|
coverage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.13"
|
|
cache: pip
|
|
cache-dependency-path: |
|
|
pyproject.toml
|
|
uv.lock
|
|
- name: Cache Playwright browsers
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.cache/ms-playwright
|
|
key: ${{ runner.os }}-playwright-${{ hashFiles('uv.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-playwright-
|
|
- run: pip install -e ".[dev]" playwright
|
|
- run: python -m playwright install --with-deps chromium
|
|
- run: python -m coverage erase
|
|
- run: python -m coverage run --append -m pytest tests/ --ignore=tests/test_e2e.py --ignore=tests/test_nav_browser.py --ignore=tests/test_responses_browser.py --ignore=tests/test_search_browser.py --ignore=tests/test_perf_viewer.py --ignore=tests/test_viewer_contracts.py -x --timeout=60 -q
|
|
- run: python -m coverage run --append -m pytest tests/test_e2e.py -q
|
|
- run: python -m coverage run --append -m pytest tests/test_nav_browser.py tests/test_perf_viewer.py -q
|
|
- run: python -m coverage run --append -m pytest tests/test_responses_browser.py -q
|
|
- run: python -m coverage run --append -m pytest tests/test_search_browser.py tests/test_viewer_contracts.py -q
|
|
- run: python -m coverage json -o .coverage.json
|
|
- run: python scripts/check_coverage.py --python-coverage .coverage.json
|