Skip to content

CD - Dev Integration Tests #1290

CD - Dev Integration Tests

CD - Dev Integration Tests #1290

name: CD - Dev Integration Tests
on:
workflow_dispatch:
inputs:
api_url:
required: true
default: https://api.dev.cloud.dpst.dev/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
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}}"