mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
a03003f5fd
Poetry v1.5.1 was released on May 29, almost 3 months ago. Probably a safe upgrade.
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
name: Scheduled tests
|
|
|
|
on:
|
|
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
|
|
schedule:
|
|
- cron: '0 13 * * *'
|
|
|
|
env:
|
|
POETRY_VERSION: "1.5.1"
|
|
|
|
jobs:
|
|
build:
|
|
defaults:
|
|
run:
|
|
working-directory: libs/langchain
|
|
runs-on: ubuntu-latest
|
|
environment: Scheduled testing
|
|
strategy:
|
|
matrix:
|
|
python-version:
|
|
- "3.8"
|
|
- "3.9"
|
|
- "3.10"
|
|
- "3.11"
|
|
name: Python ${{ matrix.python-version }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: "./.github/actions/poetry_setup"
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
poetry-version: ${{ env.POETRY_VERSION }}
|
|
working-directory: libs/langchain
|
|
install-command: |
|
|
echo "Running scheduled tests, installing dependencies with poetry..."
|
|
poetry install --with=test_integration
|
|
- name: Run tests
|
|
env:
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
run: |
|
|
make scheduled_tests
|
|
shell: bash
|