Skip to content

feat(CosmosFullNode): Allow configuring the chain home directory (#338) #940

feat(CosmosFullNode): Allow configuring the chain home directory (#338)

feat(CosmosFullNode): Allow configuring the chain home directory (#338) #940

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.20.2'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
only-new-issues: false
args: --timeout=5m
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.20.2'
- name: unit tests
run: make test