Skip to content

chore(deps): update github-tags action .github/workflows/release.draf… #440

chore(deps): update github-tags action .github/workflows/release.draf…

chore(deps): update github-tags action .github/workflows/release.draf… #440

Workflow file for this run

name: validator
# This workflow is triggered on pushes to the repository.
on: [push, pull_request]
jobs:
tflint:
name: TFLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: TFLint
uses: docker://wata727/tflint
fmt:
name: code format
runs-on: ubuntu-latest
container:
image: hashicorp/terraform:latest
steps:
- uses: actions/checkout@master
- run: |
terraform fmt --recursive -check=true
docs:
name: pre-commit-hook
runs-on: macOS-latest
steps:
- uses: actions/checkout@master
- name: install dependencies
run: |
brew install pre-commit terraform-docs terraform tflint
- name: validate sources
run: |
pre-commit run --all-files