Skip to content

Feature/3.0.0

Feature/3.0.0 #5

Workflow file for this run

name: "pull requests"
on:
pull_request:
branches:
- "**"
paths-ignore:
- "README.md"
- ".gitignore"
- ".github/workflows/**"
- "!.github/workflows/pull-requests.yml"
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Setup terraform"
uses: "hashicorp/setup-terraform@v3"
with:
terraform_wrapper: false
- name: "version"
run: terraform --version
- name: "init"
run: terraform init
- name: "validate"
run: terraform validate