diff --git a/.github/workflows/ci-amd.yml b/.github/workflows/ci-amd.yml index 084cb63779c40..e8f5b4095bb2a 100644 --- a/.github/workflows/ci-amd.yml +++ b/.github/workflows/ci-amd.yml @@ -820,12 +820,19 @@ jobs: go-version: 1.24 cache-dependency-path: go-sdk/go.sum + # keep this in sync with go.mod in go-sdk/ + - name: Setup Gotestsum + shell: bash + run: | + go install gotest.tools/gotestsum@ddd0b05a6878e2e8257a2abe6e7df66cebc53d0e # v1.12.3 + gotestsum --version + - name: "Cleanup dist files" run: rm -fv ./dist/* - name: Run Go tests working-directory: ./go-sdk - run: go test -v ./... + run: gotestsum --format testname ./... tests-airflow-ctl: name: "Airflow CTL tests"