Skip to content

Comment out run of tests to avoid log spam #5

Comment out run of tests to avoid log spam

Comment out run of tests to avoid log spam #5

name: Process Kava Repository Dispatch Event
on:
push:
branches: [ process_kava_dispatch ]
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
- name: Cache Go Modules
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
# - name: Build
# run: make build
# - name: "Clone Kava"
# run: git clone https://github.com/Kava-Labs/kava
# - name: Test Integration
# run: KAVA_RPC_URL=http://localhost:26657 NETWORK=kava-local PORT=4000 make test-integration