Skip to content

fix: require user to run eibc init before start #843

fix: require user to run eibc init before start

fix: require user to run eibc init before start #843

Workflow file for this run

name: Build and Test
on:
push:
tags:
- v*
branches:
- main
paths:
- '**/*.go'
- go.mod
- go.sum
pull_request:
paths:
- '**/*.go'
- go.mod
- go.sum
jobs:
build:
runs-on: ["self-hosted"]
env:
GOPRIVATE: "github.com/dymensionxyz/*"
GH_ACCESS_TOKEN: "${{ secrets.GH_ACCESS_TOKEN }}"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: git config --global url.https://[email protected]/.insteadOf https://github.com/
- name: Build
run: make build
# - name: Test & Coverage
# run: |
# go install github.com/ory/[email protected]
# go-acc -o coverage.txt ./... -- -v --race
# - uses: codecov/codecov-action@v3
# with:
# file: ./coverage.txt