diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4489769a..427ad6a4 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,9 +19,11 @@ jobs: go-version: 1.17.5 - name: Build - run: cd net/server - run: go build databag - + run: | + cd net/server + go build databag + - name: Test - run: cd net/server - run: go test -v ./... + run: | + cd net/server + go test -v ./...