Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

feat: add traces for monitored transaction #474

feat: add traces for monitored transaction

feat: add traces for monitored transaction #474

Workflow file for this run

on:
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
name: E2E tests
jobs:
e2e:
name: E2E Tests
strategy:
matrix:
go-version: [ 1.19.x ]
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/[email protected]
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run nodes
run: docker-compose -f ./example/docker-compose.yml up -d
- name: Run tests
run: make e2e-test
- name: Print logs
if: always()
run: |
docker ps -a
docker logs relayer1