Skip to content

fix: query and tx flags default to grpc #25

fix: query and tx flags default to grpc

fix: query and tx flags default to grpc #25

Workflow file for this run

name: build and verify
on:
pull_request:
push:
tags:
- '**'
branches:
- '**'
env:
GORDIAN_TEST_TIME_FACTOR: 4
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod # Use whatever version is in the header of go.mod.
- name: Setup Git User
run: |
git config --global user.name "abc"
git config --global user.email "[email protected]"
- name: Vendor and patch SDK, build binary
run: |
make build
- name: Build, setup, and start background gcosmos
run: |
./scripts/run_gcosmos.sh &
- name: Verify gcosmos is running
run: |
sleep 5
RESP=$(curl -s http://127.0.0.1:26657/blocks/watermark --max-time 5 | jq .VotingHeight)
if [[ "$RESP" -le 1 ]]; then
echo "Failed to start gcosmos"
exit 1
fi
echo "gcosmos is running"
- name: Cleanup
run:
killall -9 gcosmos