Skip to content

build(deps): bump github.com/cosmos/cosmos-sdk from 0.50.8 to 0.50.9 #4

build(deps): bump github.com/cosmos/cosmos-sdk from 0.50.8 to 0.50.9

build(deps): bump github.com/cosmos/cosmos-sdk from 0.50.8 to 0.50.9 #4

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}-test
cancel-in-progress: true
jobs:
test-minid:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
check-latest: true
cache: true
cache-dependency-path: go.sum
- name: test block creation
run: |
make install
make init
minid start &
MINID_PID=$!
cnt=0
while ! minid query block --type=height 5; do
cnt=$((cnt + 1))
if [ $cnt -gt 30 ]; then
kill -9 "$MINID_PID"
exit 1
fi
sleep 1
done
kill -9 "$MINID_PID"