Skip to content

build(deps): bump actions/checkout from 4 to 6 #16

build(deps): bump actions/checkout from 4 to 6

build(deps): bump actions/checkout from 4 to 6 #16

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@v6
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
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}}