Start BaaS test server (test) #9162
Workflow file for this run
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: Start BaaS test server (test) | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
type: string | |
description: BaaS branch to use when starting the server | |
default: master | |
githash: | |
type: string | |
description: Specific githash to use when starting the server (this is used instead of branch if provided) | |
jobs: | |
server: | |
name: Run test server | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Start BaaS test server | |
id: baas | |
uses: ./.github/actions/baas-test-server | |
- run: curl ${{ steps.baas.outputs.baas-url }}/api/private/v1.0/version |