Skip to content

feat(example): prompt for example in chat agent (#144) #198

feat(example): prompt for example in chat agent (#144)

feat(example): prompt for example in chat agent (#144) #198

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch: # Enables manual triggering
jobs:
test:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: make ci-setup
- name: Run linters (check mode)
run: make ci-lint
- name: Test with pytest
run: make ci-test
- name: Upload coverage to Codecov
if: matrix.python-version == '3.11' && github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
fail_ci_if_error: false
verbose: true