We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 391f994 commit b8d02cbCopy full SHA for b8d02cb
.github/workflows/sparta.yml
@@ -41,3 +41,21 @@ jobs:
41
steps:
42
- name: Checkout
43
uses: actions/checkout@v4
44
+
45
+ - name: Setup Terraform
46
+ uses: hashicorp/setup-terraform@v3
47
+ with:
48
+ terraform_version: 1.5.7
49
50
+ - name: Terraform Init
51
+ run: terraform init
52
53
+ - name: Terraform Format
54
+ run: terraform fmt -check
55
+ continue-on-error: true
56
57
+ - name: Terraform Validate
58
+ run: terraform validate
59
60
+ - name: Terraform Apply
61
+ run: terraform apply -auto-approve
.gitignore
@@ -3,3 +3,4 @@ proofs
3
debug_*.json
4
crs
5
yarn-error.log
6
+.env*
0 commit comments