From df89c4a47aadc9df83b97a820ccbb68de5a10408 Mon Sep 17 00:00:00 2001 From: Pedro Nascimento Date: Fri, 11 Oct 2024 10:54:29 -0300 Subject: [PATCH] Refactor GitHub workflows to install DBT dependencies before compiling models --- .github/workflows/dbt-compile.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/dbt-compile.yaml b/.github/workflows/dbt-compile.yaml index b7b32510..5955ca62 100644 --- a/.github/workflows/dbt-compile.yaml +++ b/.github/workflows/dbt-compile.yaml @@ -26,6 +26,9 @@ jobs: - name: Install dbt run: pip install dbt-core dbt-bigquery setuptools + - name: Install DBT Dependencies + run: dbt deps + - name: Compile dbt models run: dbt compile --profiles-dir . --profile default --target dev