Skip to content

Commit

Permalink
include terraform init in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Grunet authored Aug 26, 2024
1 parent f06d718 commit 2f509f9
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,10 @@ jobs:
cp ./terraform-temp/terraform ~/.local/bin/
rm -rf ./terraform-temp/
- name: Init terraform
run: |
make init
- name: Check Formatting
run: |
make check-format
Expand Down
1 change: 1 addition & 0 deletions packages/aws-terraform/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.terraform
21 changes: 21 additions & 0 deletions packages/aws-terraform/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions packages/aws-terraform/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
init:
terraform init
check-format:
terraform fmt --check
format:
Expand Down

0 comments on commit 2f509f9

Please sign in to comment.