Skip to content

Commit

Permalink
Update integrate.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LamSut authored Dec 19, 2024
1 parent 00f90ce commit e257cac
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build - Test - Plan (Auto)
name: Integrate # Build - Test - Plan

on:
push:
Expand Down Expand Up @@ -29,27 +29,27 @@ jobs:
- name: Terraform Validate
run: terraform validate

# test:
# runs-on: ubuntu-latest
# needs: validate
# steps:
# - name: Checkout Code
# uses: actions/checkout@v3
test:
runs-on: ubuntu-latest
needs: validate
steps:
- name: Checkout Code
uses: actions/checkout@v3

# - name: Set up Terraform
# uses: hashicorp/setup-terraform@v2
# with:
# terraform_version: 1.6
- name: Set up Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.6

# - name: Terraform Init
# run: terraform init
- name: Terraform Init
run: terraform init

# - name: Terraform Test
# run: terraform test
- name: Terraform Test
run: terraform test

plan:
runs-on: ubuntu-latest
needs: validate
needs: test
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand Down

0 comments on commit e257cac

Please sign in to comment.