langchain/.github/workflows/scheduled_test.yml

43 lines
1.1 KiB
YAML
Raw Normal View History

name: Scheduled tests
on:
2023-08-10 16:29:46 +00:00
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
2023-08-09 16:44:25 +00:00
schedule:
- cron: '0 13 * * *'
env:
POETRY_VERSION: "1.4.2"
jobs:
build:
2023-08-10 16:34:44 +00:00
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: "1.4.2"
2023-08-10 17:39:29 +00:00
working-directory: libs/langchain
install-command: |
echo "Running scheduled tests, installing dependencies with poetry..."
2023-08-10 17:39:29 +00:00
poetry install --with=test_integration
- name: Run tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
make scheduled_tests
shell: bash