-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(QAB-164): Update s3 steps to use aws golang sdk v2 (#104)
- Loading branch information
1 parent
c23b831
commit 74fc76e
Showing
13 changed files
with
272 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
UNAME := $(shell uname) | ||
GO_PATH:=$(shell go env GOPATH) | ||
|
||
LINTER_ARGS = run -c .golangci.yml --timeout 5m | ||
GODOG_FORMAT = pretty | ||
GOLANGCI_LINT_VERSION = v1.46.2 | ||
|
||
.PHONY: help | ||
help: ## Show a list of available commands | ||
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | ||
|
||
.PHONY: test-acceptance | ||
test-acceptance: ## Run acceptance tests | ||
go test ./test/acceptance -v --godog.format=$(GODOG_FORMAT) | ||
|
||
.PHONY: test-run-tag | ||
test-run-tag: ## Run feature from tag using variable TAG='<@tag_name>' | ||
go test ./test/acceptance -v --godog.tags=$(TAG) --godog.format=$(GODOG_FORMAT) | ||
|
||
.PHONY: download-tools | ||
download-tools: ## Download all required tools to validate and generate documentation, code analysis... | ||
@echo "Installing tools on $(GO_PATH)/bin" | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@$(GOLANGCI_LINT_VERSION) | ||
@echo "Tools installed" | ||
|
||
.PHONY: lint | ||
lint: ## Run static linting of source files. See .golangci.yml for options | ||
golangci-lint $(LINTER_ARGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.