Skip to content

Added product fee to the quote #416

Added product fee to the quote

Added product fee to the quote #416

Workflow file for this run

name: LPS E2E test
on:
pull_request:
branches:
- '*'
jobs:
e2e-test:
runs-on: ubuntu-18.04
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Check out repository code
uses: actions/checkout@v2
- name: Building LPS environment...
run: cd docker-compose/local/ && LPS_STAGE=regtest sh lps-env.sh build
- name: Setting LPS environment up...
run: cd docker-compose/local/ && LPS_STAGE=regtest sh lps-env.sh up && sleep 300
- name: Checking LPS health...
run: docker ps && curl -X GET http://localhost:8080/health
- name: Shutting LPS environment down...
run: cd docker-compose/local/ && LPS_STAGE=regtest sh lps-env.sh down