Skip to content

Merge pull request #7 from habr-mms/correct_null_values #16

Merge pull request #7 from habr-mms/correct_null_values

Merge pull request #7 from habr-mms/correct_null_values #16

Workflow file for this run

---
name: Terraform
on: [push, pull_request]
jobs:
terraform-lint:
runs-on: ubuntu-latest
steps:
# Important: This sets up your GITHUB_WORKSPACE environment variable
- uses: actions/checkout@v3
- uses: hashicorp/setup-terraform@v2
- name: fmt
run: terraform fmt -recursive -check
continue-on-error: true
- name: init
run: terraform init
- name: validate
run: terraform validate -no-color