Skip to content

fix(provenance): enforce tool_catalog.tool_count #584

fix(provenance): enforce tool_catalog.tool_count

fix(provenance): enforce tool_catalog.tool_count #584

Workflow file for this run

name: CI
on:
push:
branches: ["main", "feat/**", "fix/**"]
pull_request:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dev deps
run: pip install -e ".[dev]"
- name: Lint
run: ruff check src tests scripts
# House style is no em dashes in what we publish. The rule was already
# stated and the repository still carried 601 of them, because prose
# review does not catch a dash in a workflow comment or a table cell.
# examples/ and spec/ are exempt for now; see tools/check_dashes.py.
- name: House style (no em dashes)
run: python tools/check_dashes.py
- name: Type check
run: mypy src/agentrust_trace
- name: Test
run: pytest --cov=agentrust_trace --cov-report=term-missing