├── .github └── workflows │ ├── cd.yml │ ├── ci.yml │ └── ci_teardown.yml ├── .gitignore ├── .sqlfluff ├── README.md ├── dbt-requirements.txt ├── dbt_project.yml ├── macros └── drop_pr_staging_schemas.sql ├── models ├── marts │ ├── dim_customers.sql │ ├── dim_customers.yml │ ├── dim_products.sql │ ├── dim_products.yml │ ├── fct_orders.sql │ └── fct_orders.yml └── staging │ ├── stg_customers.sql │ ├── stg_customers.yml │ ├── stg_order_items.sql │ ├── stg_order_items.yml │ ├── stg_orders.sql │ ├── stg_orders.yml │ ├── stg_products.sql │ └── stg_products.yml ├── packages.yml ├── profiles.yml └── seeds ├── raw_customers.csv ├── raw_order_items.csv ├── raw_orders.csv └── raw_products.csv /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/ci_teardown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/.github/workflows/ci_teardown.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/.gitignore -------------------------------------------------------------------------------- /.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/.sqlfluff -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/README.md -------------------------------------------------------------------------------- /dbt-requirements.txt: -------------------------------------------------------------------------------- 1 | dbt-snowflake -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /macros/drop_pr_staging_schemas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/macros/drop_pr_staging_schemas.sql -------------------------------------------------------------------------------- /models/marts/dim_customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/marts/dim_customers.sql -------------------------------------------------------------------------------- /models/marts/dim_customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/marts/dim_customers.yml -------------------------------------------------------------------------------- /models/marts/dim_products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/marts/dim_products.sql -------------------------------------------------------------------------------- /models/marts/dim_products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/marts/dim_products.yml -------------------------------------------------------------------------------- /models/marts/fct_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/marts/fct_orders.sql -------------------------------------------------------------------------------- /models/marts/fct_orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/marts/fct_orders.yml -------------------------------------------------------------------------------- /models/staging/stg_customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/staging/stg_customers.sql -------------------------------------------------------------------------------- /models/staging/stg_customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/staging/stg_customers.yml -------------------------------------------------------------------------------- /models/staging/stg_order_items.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/staging/stg_order_items.sql -------------------------------------------------------------------------------- /models/staging/stg_order_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/staging/stg_order_items.yml -------------------------------------------------------------------------------- /models/staging/stg_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/staging/stg_orders.sql -------------------------------------------------------------------------------- /models/staging/stg_orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/staging/stg_orders.yml -------------------------------------------------------------------------------- /models/staging/stg_products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/staging/stg_products.sql -------------------------------------------------------------------------------- /models/staging/stg_products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/models/staging/stg_products.yml -------------------------------------------------------------------------------- /packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/packages.yml -------------------------------------------------------------------------------- /profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/profiles.yml -------------------------------------------------------------------------------- /seeds/raw_customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/seeds/raw_customers.csv -------------------------------------------------------------------------------- /seeds/raw_order_items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/seeds/raw_order_items.csv -------------------------------------------------------------------------------- /seeds/raw_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/seeds/raw_orders.csv -------------------------------------------------------------------------------- /seeds/raw_products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-szdl/dbt-ci-cd/HEAD/seeds/raw_products.csv --------------------------------------------------------------------------------