FT pre-merge #377
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: FT pre-merge | |
on: | |
pull_request_review: | |
types: [submitted] | |
jobs: | |
functional-tests-local: | |
name: Deploy Local Services | |
if: github.event.review.state == 'approved' | |
uses: ./.github/workflows/functional-tests.yml | |
with: | |
api_version: dev | |
cli_version: dev | |
functional-tests-local-redis: | |
name: Deploy Local Services with Redis as Broker | |
if: github.event.review.state == 'approved' | |
uses: ./.github/workflows/functional-tests.yml | |
with: | |
docker_compose: docker-compose-redis.yml | |
api_version: dev | |
cli_version: dev | |
functional-tests-aws: | |
name: Deploy AWS Services | |
if: github.event.review.state == 'approved' | |
uses: ./.github/workflows/functional-tests.yml | |
with: | |
docker_compose: docker-compose-aws.yml | |
api_version: dev | |
cli_version: dev | |
# disabled until MySQL is supported | |
# functional-tests-mysql: | |
# name: Deploy MySQL Server as DB | |
# if: github.event.review.state == 'approved' | |
# uses: ./.github/workflows/functional-tests.yml | |
# with: | |
# docker_compose: docker-compose-mysql.yml | |
# api_version: dev | |
# cli_version: dev |