Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
laysabit committed Mar 13, 2024
1 parent f1e7d11 commit 4cbff41
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
env:
DBT_DEFAULT_PROFILE_TARGET: stellar_dbt_public
DBT_PROFILES_DIR: ${{ github.workspace }}
DBT_TARGET: prod
DBT_TARGET: development
DBT_DATASET: crypto_stellar
DBT_MAX_BYTES_BILLED: 1000000000000
DBT_JOB_TIMEOUT: 300
Expand Down Expand Up @@ -43,4 +43,4 @@ jobs:
- name: Checkout source branch and diff quality
run: |
git checkout ${{ github.ref_name }}
diff-quality --violations=sqlfluff --fail-under=80
diff-quality --violations=sqlfluff --fail-under=95
17 changes: 17 additions & 0 deletions profiles.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
stellar_dbt_public:
target: "{{ env_var('DBT_TARGET') }}"
outputs:
prod:
dataset: ""
maximum_bytes_billed: "{{ env_var('DBT_MAX_BYTES_BILLED') | as_number }}"
job_execution_timeout_seconds: "{{ env_var('DBT_JOB_TIMEOUT') | int }}"
threads: "{{ env_var('DBT_THREADS') | int }}"
job_retries: "{{ env_var('DBT_JOB_RETRIES') | int }}"
priority: interactive
project: crypto-stellar
location: us
method: oauth
type: bigquery
test:
<<: *default

0 comments on commit 4cbff41

Please sign in to comment.