build(deps): bump langchain-core from 1.2.8 to 1.2.11 #479
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: Python Test | |
| on: | |
| schedule: | |
| - cron: '1 1 2,16 * *' # every 2nd and 16th at 01:01. To flag any dependency issues. | |
| push: | |
| branches: | |
| - develop | |
| pull_request: | |
| branches: | |
| - master | |
| - develop | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| python-version: ['3.11'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up the environment | |
| uses: ./.github/actions/setup-python-env | |
| - name: Run tests | |
| run: uv run python -m pytest tests --cov --cov-branch --cov-config=pyproject.toml --cov-report=xml | |
| - name: Upload results to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| check-docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v6 | |
| - name: Set up the environment | |
| uses: ./.github/actions/setup-python-env | |
| - name: Check if documentation can be built | |
| run: uv run mkdocs build |