Skip to content

chore(deps): Bump github.com/cosmos/cosmos-sdk from v0.47.4 to v0.47.5 #3059

chore(deps): Bump github.com/cosmos/cosmos-sdk from v0.47.4 to v0.47.5

chore(deps): Bump github.com/cosmos/cosmos-sdk from v0.47.4 to v0.47.5 #3059

Workflow file for this run

name: Unit Tests
on:
pull_request:
paths: ["**.go", "**.proto", "go.mod", "go.sum"]
# Allow concurrent runs on main/release branches but isolates other branches
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }}
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
cache: true
- name: Run all unit tests.
run: make test-unit
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build the nibid binary
run: make build