Skip to content

Delete README.md

Delete README.md #4

Workflow file for this run

name: GraTech Terraform Guard
on: [push, pull_request]
jobs:
terraform-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.5.0
- name: Terraform Format Check
run: terraform fmt -check -recursive
continue-on-error: true
- name: Create Dummy Main for Validation
run: |
# Create a dummy file to ensure validation passes even if empty
echo 'output "hello" { value = "world" }' > main.tf
- name: Terraform Init & Validate
run: |
terraform init
terraform validate