17 lines
375 B
YAML
17 lines
375 B
YAML
name: Terraform
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install terraform
|
|
uses: marocchino/setup-terraform@v1
|
|
with:
|
|
version: "0.12.20"
|
|
- name: Initialize Terraform
|
|
run: cd terraform/ && terraform init
|
|
- name: Lint
|
|
run: ./scripts/terraform-lint.sh
|