19 lines
419 B
YAML
19 lines
419 B
YAML
---
|
|
name: terraform-lint
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
- push
|
|
|
|
jobs:
|
|
terraform-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
- name: Lint Terraform
|
|
uses: actionshub/terraform-lint@main
|
|
- name: Setup TFLint
|
|
uses: terraform-linters/setup-tflint@v6
|
|
- name: Run TFLint
|
|
run: tflint -f compact --recursive
|