From 4ec78986c86864b67fa1e51ce3a18ebbbbbc4946 Mon Sep 17 00:00:00 2001 From: Anton Tayanovskyy Date: Fri, 19 Nov 2021 23:47:47 -0500 Subject: [PATCH] Try to get past the failure --- .../run-build-and-acceptance-tests.yml | 22 ++++++++++++++----- 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-build-and-acceptance-tests.yml b/.github/workflows/run-build-and-acceptance-tests.yml index d58c24b74..a1b837457 100644 --- a/.github/workflows/run-build-and-acceptance-tests.yml +++ b/.github/workflows/run-build-and-acceptance-tests.yml @@ -134,7 +134,7 @@ jobs: test: name: Test - needs: build + # needs: build strategy: matrix: platform: [ ubuntu-latest, macos-latest, windows-latest ] @@ -217,11 +217,21 @@ jobs: uses: jaxxstorm/action-install-gh-release@v1.2.0 with: repo: pulumi/pulumictl - - name: Install gotestsum - uses: jaxxstorm/action-install-gh-release@v1.2.0 - with: - repo: gotestyourself/gotestsum - tag: v1.7.0 + - name: Install gotestsum from source + run: | + go get gotest.tools/gotestsum + - name: Check gotestsum + run: | + gotestsum --help + # Binary installer for gotestsum does not work because the + # project distributes tarballs for Windows instead of zips + # expected by the action. + # + # - name: Install gotestsum + # uses: jaxxstorm/action-install-gh-release@v1.2.0 + # with: + # repo: gotestyourself/gotestsum + # tag: v1.7.0 - name: Install goteststats uses: jaxxstorm/action-install-gh-release@v1.2.0 with: