Skip to content

Add search_redmine_issues tool #42

Add search_redmine_issues tool

Add search_redmine_issues tool #42

Workflow file for this run

name: CI
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
run: pip install uv
- name: Set up environment
run: |
uv venv
source .venv/bin/activate
uv pip install -e .
uv pip install pytest pytest-asyncio pytest-cov pytest-mock
- name: Run tests
run: |
source .venv/bin/activate
python tests/run_tests.py --all --verbose