Skip to content

Merge pull request #9 from BillJr99/claude/admiring-newton-FuK5K-env-… #34

Merge pull request #9 from BillJr99/claude/admiring-newton-FuK5K-env-…

Merge pull request #9 from BillJr99/claude/admiring-newton-FuK5K-env-… #34

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements*.txt') }}
restore-keys: ${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Install uv (for uvx-based provider support)
run: pip install uv
- name: Run tests
run: pytest tests/ -v --tb=short
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: |
.pytest_cache/
retention-days: 7