mirror of https://github.com/pressly/goose.git
chore: use latest tparse version for test output
parent
4a80e05733
commit
1f7c16df3d
|
@ -37,7 +37,7 @@ jobs:
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
- name: Install tparse
|
- name: Install tparse
|
||||||
run: go install github.com/mfridman/tparse@latest
|
run: go install github.com/mfridman/tparse@main
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
|
|
|
@ -24,7 +24,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
go-version: "stable"
|
go-version: "stable"
|
||||||
- name: Install tparse
|
- name: Install tparse
|
||||||
run: go install github.com/mfridman/tparse@latest
|
run: go install github.com/mfridman/tparse@main
|
||||||
- name: Run full integration tests
|
- name: Run full integration tests
|
||||||
run: |
|
run: |
|
||||||
make test-integration
|
make test-integration
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -38,7 +38,7 @@ lint: tools
|
||||||
.PHONY: tools
|
.PHONY: tools
|
||||||
tools:
|
tools:
|
||||||
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
@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:
|
test-packages:
|
||||||
go test $(GO_TEST_FLAGS) $$(go list ./... | grep -v -e /bin -e /cmd -e /examples) |\
|
go test $(GO_TEST_FLAGS) $$(go list ./... | grep -v -e /bin -e /cmd -e /examples) |\
|
||||||
|
|
Loading…
Reference in New Issue