Skip to content

Commit

Permalink
Shorten the deployment target
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Dec 4, 2023
1 parent 66fa770 commit 03caba5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
help: ## Show this help
@egrep -h '\s##\s' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'

.PHONY: all build build-release check test clean deployment
.PHONY: all build build-release check test clean deploy
all: check build test ## Perform all the checks builds and testing

check: ## Ensure that the crate meets the basic formatting and structure
Expand All @@ -17,7 +17,7 @@ build: ## Build the crate with each set of features
build-release: check test ## Build the release versions of Lambdas
cargo lambda build --release --output-format zip

deployment: check ## Deploy the examples
deploy: check ## Deploy the examples
(cd deployment && terraform apply)

test: ## Run the crate's tests with each set of features
Expand Down

0 comments on commit 03caba5

Please sign in to comment.