Try to check it again

This commit is contained in:
Anton Tayanovskyy 2021-11-20 00:04:39 -05:00
parent 2829f9008c
commit 743b851c8e

View file

@ -165,6 +165,21 @@ jobs:
if: github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go ${{ matrix.go-version }}
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: bin
- name: Add bin to PATH
run: |
echo "bin" >> $GITHUB_PATH
- name: Check gotestsum
run: |
gotestsum --help
- name: Set PULUMI_TEST_SUBSET env var
run: |
echo "PULUMI_TEST_SUBSET=${{ matrix.test-subset }}" >> $GITHUB_ENV
@ -172,10 +187,6 @@ jobs:
if: ${{ matrix.platform == 'windows-latest' }}
run: |
choco install make
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
@ -217,14 +228,6 @@ 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: ${{ runner.temp }}/opt/pulumi/bin
- 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.