From 344319567401131417a5182fa44a538ebb6bea46 Mon Sep 17 00:00:00 2001 From: Matthew Casperson Date: Thu, 7 Dec 2023 10:08:29 +1000 Subject: [PATCH] Sigh, ok, just use go install and deal with the bin directory --- .github/workflows/integration-tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index 8f59e7c07..fb1779544 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -80,10 +80,10 @@ jobs: direct {} } EOT - - name: Setup gotestsum - uses: autero1/action-gotestsum@v1 - name: Test integration tests - run: gotestsum --junitfile node-summary.xml --format short-verbose -- -run "${{ steps.test_split.outputs.run }}" -timeout 0 integration_test.go + run: | + GOBIN=$PWD/bin go install gotest.tools/gotestsum@latest + ./bin/gotestsum --junitfile node-summary.xml --format short-verbose -- -run "${{ steps.test_split.outputs.run }}" -timeout 0 integration_test.go shell: bash env: LICENSE: ${{ secrets.OCTOPUS_SERVER_BASE64_LICENSE }}