Bedrock scheduled tests (#11194)

This commit is contained in:
Bagatur
2023-10-02 15:21:54 -04:00
committed by GitHub
parent f9b565fa8c
commit 38d5b63a10
2 changed files with 151 additions and 0 deletions

View File

@@ -40,6 +40,13 @@ jobs:
with:
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}'
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ vars.AWS_REGION }}
- name: Install dependencies
working-directory: libs/langchain
shell: bash
@@ -47,6 +54,7 @@ jobs:
echo "Running scheduled tests, installing dependencies with poetry..."
poetry install --with=test_integration
poetry run pip install google-cloud-aiplatform
poetry run pip install "boto3>=1.28.57"
- name: Run tests
shell: bash