From 383b5e3b19042980cba864ca282faa78ffa4aa3d Mon Sep 17 00:00:00 2001 From: umeshkumhar Date: Wed, 6 Mar 2024 13:36:34 +0530 Subject: [PATCH] add github actions for tf lint check --- .github/workflows/ci.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d7537941f..8ed508919 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,10 +22,16 @@ jobs: - name: Terraform Validate id: validate - run: terraform validate -no-color + run: | + terraform -chdir=applications/rag validate -no-color + terraform -chdir=applications/ray validate -no-color + terraform -chdir=applications/jupyter validate -no-color - name: Terraform Init id: init - run: terraform init + run: | + terraform -chdir=applications/rag init + terraform -chdir=applications/ray init + terraform -chdir=applications/jupyter init