Skip to content

build(deps): bump hashicorp/setup-terraform from 3 to 4 #17

build(deps): bump hashicorp/setup-terraform from 3 to 4

build(deps): bump hashicorp/setup-terraform from 3 to 4 #17

Workflow file for this run

name: Formatting
on:
push:
branches:
- main
pull_request:
jobs:
formatting:
strategy:
matrix:
engine: ["opentofu", "terraform"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Terraform
uses: hashicorp/setup-terraform@v4
if: ${{ matrix.engine == 'terraform' }}
- name: Install OpenTofu
uses: opentofu/setup-opentofu@v1
if: ${{ matrix.engine == 'opentofu' }}
- name: Test Formatting
run: make test_formatting TF_ENGINE=${{matrix.engine}}