Now gotestsum works on Windows

This commit is contained in:
Anton Tayanovskyy 2021-11-20 00:26:03 -05:00
parent 2292a95965
commit 5929ffb67a

View file

@ -176,15 +176,6 @@ jobs:
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Install gotestsum from source
run: |
go install gotest.tools/gotestsum@latest
env:
GOBIN: ${{ github.workspace }}/bin
- name: Check gotestsum
run: |
ls "${{ github.workspace }}/bin"
gotestsum --help
- name: Set PULUMI_TEST_SUBSET env var
run: |
echo "PULUMI_TEST_SUBSET=${{ matrix.test-subset }}" >> $GITHUB_ENV
@ -230,6 +221,11 @@ jobs:
uses: jaxxstorm/action-install-gh-release@v1.2.0
with:
repo: pulumi/pulumictl
- name: Install gotestsum from source
run: |
go install gotest.tools/gotestsum@latest
env:
GOBIN: ${{ github.workspace }}/bin
# Binary installer for gotestsum does not work because the
# project distributes tarballs for Windows instead of zips
# expected by the action.