Skip to content

IA-4470: Update easy fargate module variable file and documentation. #86

IA-4470: Update easy fargate module variable file and documentation.

IA-4470: Update easy fargate module variable file and documentation. #86

Workflow file for this run

name: 'Integration Tests'
on:
pull_request:
branches:
- master
defaults:
run:
shell: 'bash'
permissions:
contents: read
id-token: write
jobs:
format:
runs-on: 'ubuntu-latest'
steps:
- name: 'checkout'
uses: 'actions/checkout@v3'
- name: 'Install Terraform'
uses: 'hashicorp/setup-terraform@v2'
with:
terraform_version: '1.9.5'
- name: 'check formatting'
run: |
terraform fmt -check -recursive
validate:
runs-on: 'ubuntu-latest'
steps:
- name: 'checkout'
uses: 'actions/checkout@v3'
- name: 'Install Terraform'
uses: 'hashicorp/setup-terraform@v2'
with:
terraform_version: '1.9.5'
- name: 'validate module'
run: |
terraform init
terraform validate
spellcheck:
runs-on: 'ubuntu-latest'
steps:
- name: 'checkout'
uses: 'actions/checkout@v3'
# perform a spellcheck on the markdown
# https://github.com/marketplace/actions/github-spellcheck-action
- name: 'Spellcheck'
uses: 'rojopolis/[email protected]'
with:
source_files: 'CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md'
task_name: 'Markdown'