Skip to content

Upgrade to Tuva package v0.10 #41

Upgrade to Tuva package v0.10

Upgrade to Tuva package v0.10 #41

name: dbt_v1.4.6_snowflake_build_full_refresh
on:
workflow_dispatch:
pull_request:
branches:
- main
env:
DBT_SNOWFLAKE_CI_ACCOUNT: ${{ secrets.DBT_SNOWFLAKE_CI_ACCOUNT }}
DBT_SNOWFLAKE_CI_DATABASE: ${{ secrets.DBT_SNOWFLAKE_CI_DATABASE }}
DBT_SNOWFLAKE_CI_PASSWORD: ${{ secrets.DBT_SNOWFLAKE_CI_PASSWORD }}
DBT_SNOWFLAKE_CI_ROLE: ${{ secrets.DBT_SNOWFLAKE_CI_ROLE }}
DBT_SNOWFLAKE_CI_SCHEMA: ${{ secrets.DBT_SNOWFLAKE_CI_SCHEMA }}
DBT_SNOWFLAKE_CI_USER: ${{ secrets.DBT_SNOWFLAKE_CI_USER }}
DBT_SNOWFLAKE_CI_WAREHOUSE: ${{ secrets.DBT_SNOWFLAKE_CI_WAREHOUSE }}
jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: dbt-deps
uses: mwhitaker/dbt-action@v1.4.6
with:
dbt_command: "dbt deps --profiles-dir ./integration_tests/profiles/snowflake"
- name: dbt-debug
uses: mwhitaker/dbt-action@v1.4.6
with:
dbt_command: "dbt debug --profiles-dir ./integration_tests/profiles/snowflake"
- name: dbt-build
uses: mwhitaker/dbt-action@v1.4.6
with:
dbt_command: 'dbt build --full-refresh --profiles-dir ./integration_tests/profiles/snowflake --vars {"tuva_database":"dev_ci_testing","input_database":"dev_ci_testing","input_schema":"cclf","tuva_schema_prefix":"cclf"}'
- name: Get the result
if: ${{ always() }}
run: echo "${{ steps.dbt-build.outputs.result }}"
shell: bash