Skip to content

load testing using docker #138

load testing using docker

load testing using docker #138

Workflow file for this run

name: order-api
on:
push:
branches:
- develop
paths:
- "src/backend/services/order-api/**"
- ".github/workflows/order-api.yml"
pull_request:
branches:
- develop
paths:
- "src/backend/services/order-api/**"
- ".github/workflows/order-api.yml"
jobs:
build-release:
uses: ./.github/workflows/build-release.yml
with:
service-name: order-api
docker-file: Dockerfile
secrets: inherit
deploy:
if: github.ref == 'refs/heads/develop'
needs:
- build-release
uses: ./.github/workflows/deploy.yml
with:
service-name: order-api
version: ${{ needs.build-release.outputs.new-version }}