Skip to content

Initial commit: agentscore-py v1.0.0 #3

Initial commit: agentscore-py v1.0.0

Initial commit: agentscore-py v1.0.0 #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- run: uv sync --frozen --all-extras
- run: uv run ruff check .
- run: uv run ruff format --check .
- run: uv run vulture . vulture_whitelist.py --min-confidence 80 --exclude .venv
- run: uv run pytest tests/