improve matrix #101
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: Terraform CI - Lint | |
on: | |
[push] | |
jobs: | |
tf_lint: | |
name: 'Terraform lint (on tf ${{ matrix.terraform_version }})' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
terraform_version: [ '~1.5.0', '~1.6.0', '~1.7.0', 'latest'] # in theory, we go down to 1.0, but I think that's overkill for lint | |
permissions: | |
contents: 'read' | |
id-token: 'write' | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: 'setup Terraform' | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: ${{ matrix.terraform_version }} | |
- name: 'lint Terraform code' | |
# see https://www.terraform.io/cli/commands/fmt | |
run: | |
terraform fmt -check -recursive -diff . |