Skip to content

Add changelog for 1.0.0, add pre-commit #30

Add changelog for 1.0.0, add pre-commit

Add changelog for 1.0.0, add pre-commit #30

Workflow file for this run

---
name: CI
on:
push:
pull_request:
jobs:
validate:
name: terraform lint and validate
runs-on: ubuntu-22.04
timeout-minutes: 4
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install terraform
uses: hashicorp/setup-terraform@v2
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Validate
run: |
cd ecs-cluster
terraform init -backend=false
terraform validate
- name: pre-commit
uses: pre-commit/[email protected]