-
Notifications
You must be signed in to change notification settings - Fork 24
43 lines (41 loc) · 1.48 KB
/
v2App_Unit_Test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: v2 App Unit Test
on: [pull_request]
jobs:
v2-app-unit-test:
name: "V2 App Unit Test"
runs-on: "ubuntu-latest"
env:
SUMO_APPS_V2_REPO_PATH: ${{ github.workspace }}
TARGET_BRANCH: "origin/${{ github.event.pull_request.base.ref }}"
SOURCE_BRANCH: "origin/${{ github.event.pull_request.head.ref }}"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python3 -m pip install -U pip wheel setuptools
- name: "Install sumoappsuite tool"
run: |
pip3 install $GITHUB_WORKSPACE/scripts/sumologic_appdevutils*.whl
- name: "Install terraform"
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.9.2
- name: "Set TERRAFORM_PATH"
run: |
echo "TERRAFORM_PATH=$(which terraform)" >> $GITHUB_ENV
- name: "Verify TERRAFORM_PATH"
run: |
echo "Terraform path: ${{ env.TERRAFORM_PATH }}"
${{ env.TERRAFORM_PATH }} --version
- name: "Generate SCR File"
run: |
sumoappsuite generate-scr-file-v2-app && cat scr_app_list.yaml
- name: "Run Sumo Logic App Tests"
run: |
sumoappsuite run-all-app-tests-v2 -f scr_app_list.yaml -e test_tfApp_installable,test_is_deployable,test_sumo_query,test_threatintel_query,test_update_v2_app