Try to get past the failure

This commit is contained in:
Anton Tayanovskyy 2021-11-19 23:47:47 -05:00
parent 22d54ac1ad
commit 4ec78986c8

View file

@ -134,7 +134,7 @@ jobs:
test: test:
name: Test name: Test
needs: build # needs: build
strategy: strategy:
matrix: matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ] platform: [ ubuntu-latest, macos-latest, windows-latest ]
@ -217,11 +217,21 @@ jobs:
uses: jaxxstorm/action-install-gh-release@v1.2.0 uses: jaxxstorm/action-install-gh-release@v1.2.0
with: with:
repo: pulumi/pulumictl repo: pulumi/pulumictl
- name: Install gotestsum - name: Install gotestsum from source
uses: jaxxstorm/action-install-gh-release@v1.2.0 run: |
with: go get gotest.tools/gotestsum
repo: gotestyourself/gotestsum - name: Check gotestsum
tag: v1.7.0 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 - name: Install goteststats
uses: jaxxstorm/action-install-gh-release@v1.2.0 uses: jaxxstorm/action-install-gh-release@v1.2.0
with: with: