Skip to content

refactor(provider): unify HTTP calls behind doJSON helper (97 files),… #292

refactor(provider): unify HTTP calls behind doJSON helper (97 files),…

refactor(provider): unify HTTP calls behind doJSON helper (97 files),… #292

Workflow file for this run

name: OpenTofu CI
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
branches:
- main
jobs:
opentofu:
name: OpenTofu Validation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install OpenTofu
uses: opentofu/setup-opentofu@v1
with:
tofu_version: latest
- name: Show OpenTofu version
run: tofu version
- name: Initialize OpenTofu
run: make o-init
- name: Validate OpenTofu configuration
run: make o-validate
- name: Check OpenTofu formatting
run: make o-fmt-check