Skip to content

Bump black from 23.12.1 to 24.1.1 #89

Bump black from 23.12.1 to 24.1.1

Bump black from 23.12.1 to 24.1.1 #89

Workflow file for this run

name: terraform
on:
push:
branches: ["main"]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup-terraform
uses: hashicorp/setup-terraform@v2.0.3
with:
terraform_version: 1.3.6
- name: Run a terraform validate command
working-directory: ./terraform
run: |
terraform init -backend=false
terraform validate
- name: Run a terraform fmt command
working-directory: ./terraform
run: terraform fmt -check -recursive