Bug fixes for Breast Cancer Screening and CMS HCC, and improvements for quality measure performance periods #195
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dbt_v1.4.6_redshift_build_full_refresh | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
env: | |
DBT_REDSHIFT_CI_HOST: ${{ secrets.DBT_REDSHIFT_CI_HOST }} | |
DBT_REDSHIFT_CI_USER: ${{ secrets.DBT_REDSHIFT_CI_USER }} | |
DBT_REDSHIFT_CI_PASSWORD: ${{ secrets.DBT_REDSHIFT_CI_PASSWORD }} | |
DBT_REDSHIFT_CI_PORT: ${{ secrets.DBT_REDSHIFT_CI_PORT }} | |
jobs: | |
action: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: dbt-deps | |
uses: mwhitaker/[email protected] | |
with: | |
dbt_command: "dbt deps --profiles-dir ./profiles/redshift" | |
dbt_project_folder: "integration_tests" | |
- name: dbt-debug | |
uses: mwhitaker/[email protected] | |
with: | |
dbt_command: "dbt debug --profiles-dir ./profiles/redshift" | |
dbt_project_folder: "integration_tests" | |
- name: dbt-build | |
uses: mwhitaker/[email protected] | |
with: | |
dbt_command: 'dbt build --full-refresh --profiles-dir ./profiles/redshift --vars {"tuva_database":"dev_ci_testing","input_database":"dev_ci_testing","input_schema":"claims_common"}' | |
dbt_project_folder: "integration_tests" | |
- name: Get the result | |
if: ${{ always() }} | |
run: echo "${{ steps.dbt-build.outputs.result }}" | |
shell: bash |