add module for opslevel_service_relationship #152
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
paths: | |
- '.github/workflows/tests.yml' | |
- 'examples/**' | |
- 'modules/**' | |
jobs: | |
lint-terraform-files: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set Terraform | |
uses: hashicorp/setup-terraform@v3 | |
- name: Terraform fmt | |
run: terraform fmt -check -recursive | |
- name: Terraform Validate | |
run: terraform validate -no-tests |