docs(llms-txt): correct Memory contract emission points (1.3.5) (#12) #75
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| runs-on: blacksmith-2vcpu-ubuntu-2404-arm | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: useblacksmith/checkout@v1 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.1.0 | |
| - name: Set up Python | |
| run: uv python install 3.12 | |
| - uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.cache/uv | |
| ~/.local/share/uv | |
| key: ${{ runner.os }}-uv-${{ hashFiles('uv.lock') }} | |
| restore-keys: ${{ runner.os }}-uv- | |
| - name: Install dependencies | |
| run: uv sync --frozen --all-extras | |
| - name: Ruff check | |
| run: uv run ruff check . | |
| - name: Ruff format check | |
| run: uv run ruff format --check . | |
| - name: Type check (ty) | |
| run: uv run ty check agentscore_commerce/ | |
| - name: Vulture | |
| run: uv run vulture agentscore_commerce/ vulture_whitelist.py --min-confidence 80 | |
| - name: Tests | |
| run: uv run pytest tests/ -v --cov=agentscore_commerce --cov-report=term-missing |