Skip to content

Knowledge tuning push tests #4

Knowledge tuning push tests

Knowledge tuning push tests #4

name: Knowledge Tuning Push Tests
on:
push:
# Run on all pushes, including feature branches
pull_request:
branches: [main]
jobs:
push-tests:
name: Run Push Tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install test dependencies
run: |
cd tests/knowledge-tuning
pip install -e .
- name: Run push tests
run: |
python tests/knowledge-tuning/run_push_tests.py