Bump to v0.45.3: fix slash in embedding model names #53
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: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| - name: Set up Python | |
| run: uv python install 3.12 | |
| - name: Install dependencies | |
| run: uv sync --extra dev --extra langchain | |
| - name: Run tests | |
| run: uv run pytest --tb=short -q -m "not slow and not e2e" | |
| env: | |
| # Dummy key so config detects a provider; mock_providers fixture | |
| # intercepts before any real API call is made | |
| OPENAI_API_KEY: sk-test-ci-dummy-key |