Skip to content

Commit

Permalink
chore: use latest tparse version for test output
Browse files Browse the repository at this point in the history
  • Loading branch information
mfridman committed Nov 2, 2024
1 parent 4a80e05 commit 1f7c16d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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) |\
Expand Down

0 comments on commit 1f7c16d

Please sign in to comment.