chore(deps): bump @anthropic-ai/claude-code from 1.0.83 to 1.0.120 #280
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: Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Install test dependencies | |
| run: | | |
| pip install pytest pytest-asyncio httpx | |
| - name: Test imports | |
| run: | | |
| python -c "from app.main import app; print('✅ App imports successfully')" | |
| - name: Run tests | |
| env: | |
| USE_MOCK_DB: "true" | |
| LM_STUDIO_URL: "http://localhost:1234" | |
| CLIP_SERVICE_URL: "http://localhost:8002" | |
| run: | | |
| python -m pytest tests/unit/test_basic_functionality.py tests/unit/test_basic_modules.py tests/unit/test_factory.py -v --tb=short | |
| - name: Build Docker image | |
| run: | | |
| docker build -t second-brain:test . | |
| echo "✅ Docker build successful" |