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: Notebook Tests | |
| on: | |
| push: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| notebook-tests: | |
| name: Run Notebook Test Suites | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install shared test dependencies | |
| working-directory: tests | |
| run: | | |
| pip install -e . | |
| - name: Run repo-wide format checks | |
| run: | | |
| python tests/format_checks/format_checks.py | |
| - name: Run knowledge-tuning tests | |
| run: | | |
| python tests/knowledge-tuning/run_knowledge_tuning_tests.py | |