CD - Prod Integration Tests #4144
This file contains 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: CD - Prod Integration Tests | |
on: | |
workflow_dispatch: | |
inputs: | |
api_url: | |
required: false | |
default: "https://api.cloud.deepset.ai/api/v1" | |
type: string | |
description: "The API URL for the test run" | |
env: | |
HATCH_VERSION: "v1.7.0" # keep in sync with deploy.yml | |
jobs: | |
tests: | |
name: Tests | |
environment: PROD | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run integration tests | |
uses: ./.github/actions/integration_tests | |
with: | |
API_KEY: "${{secrets.API_KEY}}" | |
API_URL: ${{ inputs.api_url }} |