Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Deprecate Megalista #610

Deprecate Megalista

Deprecate Megalista #610

Workflow file for this run

name: Terraform Validate
on: ['push']
jobs:
terraform-actions:
name: Workflow
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./terraform
steps:
- name: Checkout Repository
uses: actions/checkout@master
- name: HashiCorp - Setup Terraform
uses: hashicorp/[email protected]
with:
terraform_version: 0.14.6
- name: Terraform Init
id: init
run: terraform init
continue-on-error: true
- name: Terraform Fmt
id: fmt
run: terraform fmt -check -diff
continue-on-error: true
- name: Terraform Validate
id: validate
run: terraform validate -no-color
continue-on-error: false