fix: Optional old GUIs #693
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: Pre-commit | |
on: | |
push: | |
branches: | |
- main | |
- 0.2.x | |
pull_request: | |
branches: | |
- main | |
- 0.2.x | |
jobs: | |
pre-commit: | |
name: Pre-commit checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install tfsec for static analysis of Terraform code to spot potential misconfigurations | |
run: | | |
curl -s https://raw.githubusercontent.com/aquasecurity/tfsec/master/scripts/install_linux.sh | bash | |
- name: Install Terraform Linter | |
uses: terraform-linters/setup-tflint@v3 | |
- name: Install helm-docs | |
uses: envoy/install-helm-docs@v1.0.0 | |
with: | |
version: 1.7.0 | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v3 | |
- uses: pre-commit/action@v3.0.0 |