BEP-341 #218
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- 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 | |
# wait for epoch including turn term | |
sleep 60 | |
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" |