mirror of https://github.com/knative/func.git
chore: adds tests for springboot templates (#1059)
* adding tests for springboot templates * adding test-springboot to test-template goals * removing space * removing vendor license
This commit is contained in:
parent
5f6d11c491
commit
a454ea9ae9
6
Makefile
6
Makefile
|
@ -98,7 +98,7 @@ clean: clean_templates ## Remove generated artifacts such as binaries and schema
|
|||
##@ Templates
|
||||
#############
|
||||
|
||||
test-templates: test-go test-node test-python test-quarkus test-rust test-typescript ## Run all template tests
|
||||
test-templates: test-go test-node test-python test-quarkus test-springboot test-rust test-typescript ## Run all template tests
|
||||
|
||||
test-go: ## Test Go templates
|
||||
cd templates/go/cloudevents && go mod tidy && go test
|
||||
|
@ -116,6 +116,10 @@ test-quarkus: ## Test Quarkus templates
|
|||
cd templates/quarkus/cloudevents && mvn test && mvn clean
|
||||
cd templates/quarkus/http && mvn test && mvn clean
|
||||
|
||||
test-springboot: ## Test Spring Boot templates
|
||||
cd templates/springboot/cloudevents && mvn test && mvn clean
|
||||
cd templates/springboot/http && mvn test && mvn clean
|
||||
|
||||
test-rust: ## Test Rust templates
|
||||
cd templates/rust/cloudevents && cargo test && cargo clean
|
||||
cd templates/rust/http && cargo test && cargo clean
|
||||
|
|
Loading…
Reference in New Issue