Knowledge tuning push tests #4
Workflow file for this run
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: 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 | |