node: run all Go tests in CI

commit-id:baa9f712
This commit is contained in:
Leo 2021-12-19 18:42:10 +01:00 committed by Leopold Schabel
parent 585a22cf59
commit 8e695c674a
2 changed files with 3 additions and 4 deletions

View File

@ -46,9 +46,8 @@ jobs:
go-version: '1.17.5'
- run: make node
# Run linters. This is just Go and Protobuf for now, but could include things
# like rustfmt as well.
lint:
# Run linters, Go tests and other outside-of-Tilt things.
lint-and-tests:
# The linter is slow enough that we want to run it on the self-hosted runner
runs-on: tilt-kube-public
concurrency:
@ -60,3 +59,4 @@ jobs:
with:
go-version: '1.17.5'
- run: make generate && ./lint.sh
- run: cd node && go test -v ./...

View File

@ -43,7 +43,6 @@ func TestSerializeDeserialize(t *testing.T) {
vaaData, err := test.vaa.Marshal()
require.NoError(t, err)
println(hex.EncodeToString(vaaData))
vaaParsed, err := Unmarshal(vaaData)
require.NoError(t, err)