[2142] Update dfe_analytics README #489
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: pull_request | |
jobs: | |
terraform-format: | |
name: Terraform Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: "1.9.5" | |
- name: Check formatting | |
run: terraform fmt -recursive -check | |
terraform-docs: | |
name: Terraform Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: terraform-docs/[email protected] | |
with: | |
find-dir: . | |
fail-on-diff: true | |
config-file: .terraform-docs.yaml | |
# these are set in the configuration file | |
output-method: "" | |
output-file: "" | |
output-format: "" | |
template: "" | |
yaml: | |
name: YAML | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check formatting | |
uses: karancode/[email protected] |