feat: split /general up so bank supply is not served in /single mode #48
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: test | |
on: [push] | |
jobs: | |
go-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-go@v2 | |
- run: go version | |
- run: go mod download | |
- run: go build ./cmd/cosmos-exporter | |
- run: go build ./cmd/kuji-cosmos-exporter | |
- run: go build ./cmd/sei-cosmos-exporter | |
- run: go build ./cmd/inj-cosmos-exporter | |
go-vet: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-go@v2 | |
- run: go version | |
- run: go mod download | |
- run: go vet cmd/... |