From 772ab6cc87239c2b9eb5f06aa47f8e998944fe08 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sun, 22 Oct 2023 17:06:36 -0700 Subject: [PATCH] Update makefile to use my forked version of gotestsum that contains https://github.com/gotestyourself/gotestsum/pull/377 --- .github/workflows/go-test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 337e7bd..bad7cd2 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -67,7 +67,13 @@ jobs: env: DD_API_KEY: ${{ secrets.DD_API_KEY }} run: | - go install gotest.tools/gotestsum@latest + + # Once https://github.com/gotestyourself/gotestsum/pull/377 is merged, update this to pull from main rather than my fork + cd ../ + git clone git@github.com:ddworken/gotestsum.git + cd gotestsum + go install . + cd ../hishtory make test - name: Archive test results uses: actions/upload-artifact@v3