Skip to content

bump: version 0.1.0 → 0.1.1 #4

bump: version 0.1.0 → 0.1.1

bump: version 0.1.0 → 0.1.1 #4

Workflow file for this run

name: Terraform
on:
push:
branches:
- main
jobs:
plan:
name: Format Terraform
runs-on: ubuntu-latest
steps:
- name: Code
uses: actions/checkout@v3
- name: Setup
uses: hashicorp/setup-terraform@v1
- name: Format
run: terraform fmt -check -diff -recursive .
- name: Initialize
run: |
terraform init
- name: Validate
run: |
terraform validate