Add codespell config (within pyproject.toml), action and fix the typos it finds (and fixes) #615
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 terraform | |
on: | |
pull_request: | |
paths: | |
- "terraform/**" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hashicorp/setup-terraform@v3 | |
- uses: terraform-linters/setup-tflint@v4 | |
- name: Run terraform linter | |
run: | | |
cd terraform | |
tflint --recursive | |
- name: Check terraform formatting | |
run: terraform fmt -check -diff terraform/ |