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 8d21f97 commit cfaa710Copy full SHA for cfaa710
.github/workflows/deploy-sandbox.yml
@@ -34,6 +34,23 @@ jobs:
34
env:
35
SANDBOX_NAME: ${{ github.event.inputs.sandbox_name }}
36
37
+ test_job:
38
+ name: Test Job
39
+ runs-on: ubuntu-latest
40
+ needs: validate_inputs
41
+ environment: development
42
+ steps:
43
+ - name: Checkout main
44
+ uses: actions/checkout@v5
45
+ with:
46
+ ref: ${{ github.event.inputs.git_ref}}
47
+
48
+ - name: TEST
49
+ id: test
50
+ run: echo "Hello"
51
+ working-directory: ./infrastructure
52
+ shell: bash
53
54
terraform_plan_apply_main:
55
name: Terraform Plan/Apply (main)
56
runs-on: ubuntu-latest
0 commit comments