Skip to content

feat: e2e test client update after IBC Client Expiration #121

feat: e2e test client update after IBC Client Expiration

feat: e2e test client update after IBC Client Expiration #121

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.21"
- name: Tidy go.mod
run: go mod tidy
- name: Check diff
run: git diff --exit-code
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/[email protected]
- name: Lint
run: make lint
- name: Build
run: make build
- name: Test
run: make test
- name: Check diff
run: git diff --exit-code