fix: query and tx flags default to grpc #25
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: 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 |