Skip to content

Splitting to two services #38

Splitting to two services

Splitting to two services #38

Workflow file for this run

name: load
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
load-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Data Manager
run: |
make build loadtest-setup
- name: Wait for the Service to be ready
run: |
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8080/ready)" != "200" ]]; do sleep 5; done
- name: Run Stress Tests
uses: grafana/[email protected]
with:
filename: tests/k6/script.js
flags: --config tests/k6/stress.json