Skip to content

BEP-466

BEP-466 #258

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
unit-test:
name: unit-test
timeout-minutes: 10
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.58
# still using the deprecated types in ibc-go v8
args: --timeout=5m0s --disable staticcheck
- name: test
run: go test -v ./module
e2e:
name: e2e
timeout-minutes: 45
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: test
working-directory: e2e
run: |
make chain
make contracts
sleep 20
make relayer
make test
- name: integration-test
run: go test -v ./tests -tags dev -ldflags="-X github.com/datachainlab/ibc-parlia-relay/module/constant.blocksPerEpoch=20"