Skip to content

Merge pull request #8 from oleksii-kalinin/feat/regex-instance-type #21

Merge pull request #8 from oleksii-kalinin/feat/regex-instance-type

Merge pull request #8 from oleksii-kalinin/feat/regex-instance-type #21

Workflow file for this run

name: Terraform
on: [push, pull_request]
jobs:
terraform:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.4.0
- name: Terraform Init
id: init
run: terraform init
- name: Terraform fmt
id: fmt
run: terraform fmt -check
continue-on-error: true
- name: Terraform Validate
id: validate
run: terraform validate -no-color