This repository has been archived by the owner on May 9, 2024. It is now read-only.
add blurb to declare the migration of CB core to sygma core #479
Workflow file for this run
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
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 |