diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 863da56..1bbda4c 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -18,6 +18,8 @@ jobs: runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v4 + with: + submodules: recursive - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} diff --git a/state_query_test.go b/state_query_test.go index 1767045..bf3e56d 100644 --- a/state_query_test.go +++ b/state_query_test.go @@ -181,5 +181,5 @@ func TestClient_UtxosByTxIn(t *testing.T) { encoder := json.NewEncoder(os.Stdout) encoder.SetIndent("", " ") - encoder.Encode(utxos) + _ = encoder.Encode(utxos) }