From 1f7c16df3d14d303d74b44a0fa417f564d7bf0d8 Mon Sep 17 00:00:00 2001 From: Mike Fridman Date: Sat, 2 Nov 2024 19:52:08 -0400 Subject: [PATCH] chore: use latest tparse version for test output --- .github/workflows/ci.yaml | 2 +- .github/workflows/integration.yaml | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ee0a2f07a..80c8b49a9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,7 +37,7 @@ jobs: exit 1 fi - name: Install tparse - run: go install github.com/mfridman/tparse@latest + run: go install github.com/mfridman/tparse@main - name: Run tests run: | mkdir -p bin diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 8aede6754..631fde5f1 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -24,7 +24,7 @@ jobs: with: go-version: "stable" - name: Install tparse - run: go install github.com/mfridman/tparse@latest + run: go install github.com/mfridman/tparse@main - name: Run full integration tests run: | make test-integration diff --git a/Makefile b/Makefile index cb95b549b..9f9b42731 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ lint: tools .PHONY: tools tools: @go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest - @go install github.com/mfridman/tparse@latest + @go install github.com/mfridman/tparse@main test-packages: go test $(GO_TEST_FLAGS) $$(go list ./... | grep -v -e /bin -e /cmd -e /examples) |\