We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8be205b + 237f559 commit 291028bCopy full SHA for 291028b
.github/workflows/dbt_test.yml
@@ -1,10 +1,11 @@
1
name: Test DBT package
2
3
on:
4
+ workflow_dispatch:
5
push:
6
branches: [ "main", "develop" ]
7
paths:
- - macros/
8
+ - macros/**
9
- dbt_project.yml
10
- .github/workflows/dbt_test.yml
11
macros/test_aggregation/get_test_suggestions.sql
@@ -91,7 +91,9 @@
91
{% if return_object %}
92
{{ return(dbt_config) }}
93
{% else %}
94
- {{ print(testgen.to_yaml(dbt_config)) }}
+ {% set the_yaml = testgen.to_yaml(dbt_config) %}
95
+ {{ print(the_yaml) }}
96
+ {{ return(the_yaml) }}
97
{% endif %}
98
99
{%- endmacro %}
0 commit comments