Update dependencies
This commit is contained in:
14
vendor/github.com/aws/smithy-go/Makefile
generated
vendored
14
vendor/github.com/aws/smithy-go/Makefile
generated
vendored
@@ -33,13 +33,18 @@ smithy-clean:
|
||||
##################
|
||||
# Linting/Verify #
|
||||
##################
|
||||
.PHONY: verify vet
|
||||
.PHONY: verify vet cover
|
||||
|
||||
verify: vet
|
||||
|
||||
vet:
|
||||
go vet ${BUILD_TAGS} --all ./...
|
||||
|
||||
cover:
|
||||
go test ${BUILD_TAGS} -coverprofile c.out ./...
|
||||
@cover=`go tool cover -func c.out | grep '^total:' | awk '{ print $$3+0 }'`; \
|
||||
echo "total (statements): $$cover%";
|
||||
|
||||
################
|
||||
# Unit Testing #
|
||||
################
|
||||
@@ -93,5 +98,12 @@ module-version:
|
||||
##############
|
||||
.PHONY: install-changelog
|
||||
|
||||
external-changelog:
|
||||
mkdir -p .changelog
|
||||
cp changelog-template.json .changelog/00000000-0000-0000-0000-000000000000.json
|
||||
@echo "Generate a new UUID and update the file at .changelog/00000000-0000-0000-0000-000000000000.json"
|
||||
@echo "Make sure to rename the file with your new id, like .changelog/12345678-1234-1234-1234-123456789012.json"
|
||||
@echo "See CONTRIBUTING.md 'Changelog Documents' and an example at https://github.com/aws/smithy-go/pull/543/files"
|
||||
|
||||
install-changelog:
|
||||
go install ${REPOTOOLS_MODULE}/cmd/changelog@${REPOTOOLS_VERSION}
|
||||
|
||||
Reference in New Issue
Block a user