Add CI
Some checks failed
CI / lint (push) Failing after 1m6s

This commit is contained in:
Abel Luck 2025-06-03 14:34:20 +02:00
parent 6b623eb3a3
commit d39efbd1e2
2 changed files with 30 additions and 1 deletions

View file

@ -32,4 +32,14 @@ e2e:
TF_CLI_CONFIG_FILE=.terraformrc terraform destroy -auto-approve && \
echo "✓ E2E test completed successfully"
.PHONY: fmt lint test testacc build install generate e2e
ci:
@echo "1/4 Running linter..."
$(MAKE) lint
@echo "2/4 Building provider..."
$(MAKE) build
@echo "3/4 Running acceptance tests..."
$(MAKE) testacc
@echo "4/4 Running end-to-end tests..."
$(MAKE) e2e
.PHONY: fmt lint test testacc build install generate e2e ci