Skip to content

Implement automation (#2) #5

Implement automation (#2)

Implement automation (#2) #5

Workflow file for this run

name: PR
on:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
- release/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.4.6
- name: Terraform Init
run: terraform init
- name: Terraform Validate
run: terraform validate