Skip to content

fix: use tori as bech32 prefix instead of cosmos #106

fix: use tori as bech32 prefix instead of cosmos

fix: use tori as bech32 prefix instead of cosmos #106

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.20"
- 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/golangci-lint@v1.55.2
- name: Lint
run: make lint
- name: Build
run: make build
- name: Test
run: make test
- name: Check diff
run: git diff --exit-code