mirror of
https://github.com/FlipsideCrypto/livequery-models.git
synced 2026-02-06 10:56:46 +00:00
Update dbt integration test workflow to enhance environment handling
- Modified the warehouse selection logic to include 'workflow_prod' as a valid condition for using 'DBT_CLOUD'. - Updated the environment assignment to correctly map 'workflow_prod' to 'prod' and 'workflow_dev' to 'dev', improving clarity and functionality in the workflow.
This commit is contained in:
parent
db62a0a16e
commit
86e9ab3ceb
4
.github/workflows/dbt_integration_test.yml
vendored
4
.github/workflows/dbt_integration_test.yml
vendored
@ -41,6 +41,6 @@ jobs:
|
||||
uses: ./.github/workflows/dbt.yml
|
||||
secrets: inherit
|
||||
with:
|
||||
warehouse: ${{ github.event.inputs.environment == 'prod' && 'DBT_CLOUD' || 'XSMALL' }}
|
||||
environment: ${{ github.event.inputs.environment }}
|
||||
warehouse: ${{ (github.event.inputs.environment == 'prod' || github.event.inputs.environment == 'workflow_prod') && 'DBT_CLOUD' || 'XSMALL' }}
|
||||
environment: ${{ github.event.inputs.environment == 'workflow_prod' && 'prod' || (github.event.inputs.environment == 'workflow_dev' && 'dev' || github.event.inputs.environment) }}
|
||||
command: dbt test -s test___utils_udf_introspect
|
||||
|
||||
Loading…
Reference in New Issue
Block a user