diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9b22701a7..903c35db0 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [windows-latest] runs-on: ${{ matrix.os }} steps: @@ -25,8 +25,7 @@ jobs: run: go mod download - name: Run unit and integration tests - run: go test -race -tags=integration ./... - + run: go test -v -race -tags=integration ./cmd/release - name: Build run: go build -v ./cmd/gh diff --git a/pkg/cmd/release/verify-asset/verify-asset_test.go b/pkg/cmd/release/verify-asset/verify-asset_test.go index 1760d4a05..c732bfd86 100644 --- a/pkg/cmd/release/verify-asset/verify-asset_test.go +++ b/pkg/cmd/release/verify-asset/verify-asset_test.go @@ -164,7 +164,7 @@ func Test_verifyAssetRun_Failed_With_Wrong_tag(t *testing.T) { func Test_verifyAssetRun_Failed_With_Invalid_Artifact(t *testing.T) { ios, _, _, _ := iostreams.Test() - tagName := "v1.2.3" + tagName := "v5" fakeHTTP := &httpmock.Registry{} defer fakeHTTP.Verify(t)