Skip to content

feat: add some CI checks #3

feat: add some CI checks

feat: add some CI checks #3

Workflow file for this run

name: Terraform checks
on: [pull_request]
jobs:
build:
name: lint and validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hashicorp/[email protected]
- name: Terraform fmt
id: fmt
run: terraform fmt -recursive -check
continue-on-error: true
# - name: Terraform Validate
# id: validate
# run:
# - cd example
# - terraform init -backend=false
# - terraform validate -no-color
# - terraform fmt --check