Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/dbt-pr-ci-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
SNOWFLAKE_USER: ${{ secrets.SNOWFLAKE_USER }}
SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }}
SNOWFLAKE_ROLE: ${{ secrets.SNOWFLAKE_ROLE }}
SNOWFLAKE_SCHEMA: ${{ secrets.SNOWFLAKE_SCHEMA }}

- name: Lint models
run: "sqlfluff lint models"
1 change: 1 addition & 0 deletions models/marts/core/fct_orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ with payments as (
orders as (

select * from {{ ref('stg_orders')}}
where order_date >= '2018-03-01' and order_date <= '2018-03-31'

),

Expand Down