Skip to content

build(deps): bump opentofu/setup-opentofu from 1 to 2 #18

build(deps): bump opentofu/setup-opentofu from 1 to 2

build(deps): bump opentofu/setup-opentofu from 1 to 2 #18

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@v3
if: ${{ matrix.engine == 'terraform' }}
- name: Install OpenTofu
uses: opentofu/setup-opentofu@v2
if: ${{ matrix.engine == 'opentofu' }}
- name: Test Formatting
run: make test_formatting TF_ENGINE=${{matrix.engine}}