@@ -40,35 +40,35 @@ jobs:
40
40
auth_obj_path : ' ./.github/workflows/workflow_scripts/auth.json'
41
41
test_query : |
42
42
REGISTRY PULL google v23.01.00116;
43
- SELECT name, status
43
+ SELECT name
44
44
FROM google.compute.instances
45
45
WHERE project = 'stackql-demo' AND zone = 'australia-southeast1-a' AND name = 'stackql-demo-001';
46
- expected_results_str : ' [{"name":"stackql-demo-001","status":"TERMINATED" }]'
46
+ expected_results_str : ' [{"name":"stackql-demo-001"}]'
47
47
48
48
- name : Use test query file and expected result string with auth object
49
49
uses : ./
50
50
with :
51
51
auth_obj_path : ' ./.github/workflows/workflow_scripts/auth.json'
52
52
test_query_file_path : ' ./.github/workflows/workflow_scripts/google-example.iql'
53
- expected_results_str : ' [{"name":"stackql-demo-001","status":"TERMINATED" }]'
53
+ expected_results_str : ' [{"name":"stackql-demo-001"}]'
54
54
55
55
- name : Use test query string and expected results string, with auth string
56
56
uses : ./
57
57
with :
58
58
auth_str : ' { "google": { "type": "service_account", "credentialsfilepath": "sa-key.json" }}'
59
59
test_query : |
60
60
REGISTRY PULL google v23.01.00116;
61
- SELECT name, status
61
+ SELECT name
62
62
FROM google.compute.instances
63
63
WHERE project = 'stackql-demo' AND zone = 'australia-southeast1-a' AND name = 'stackql-demo-001';
64
- expected_results_str : ' [{"name":"stackql-demo-001","status":"TERMINATED" }]'
64
+ expected_results_str : ' [{"name":"stackql-demo-001"}]'
65
65
66
66
- name : Use test query string and expected results file, with auth object
67
67
uses : ./
68
68
with :
69
69
auth_obj_path : ' ./.github/workflows/workflow_scripts/auth.json'
70
70
test_query_file_path : ' ./.github/workflows/workflow_scripts/google-example.iql'
71
- expected_results_str : ' [{"name":"stackql-demo-001","status":"TERMINATED" }]'
71
+ expected_results_str : ' [{"name":"stackql-demo-001"}]'
72
72
73
73
- name : Use test query string and expected rows, with auth object
74
74
uses : ./
0 commit comments