diff --git a/.github/workflows/project_evaluator_ci.yml b/.github/workflows/project_evaluator_ci.yml index b131bb5..7e09370 100644 --- a/.github/workflows/project_evaluator_ci.yml +++ b/.github/workflows/project_evaluator_ci.yml @@ -9,7 +9,7 @@ env: DBT_DEFAULT_PROFILE_TARGET: stellar_dbt_public DBT_PROFILES_DIR: ${{ github.workspace }} DBT_TARGET: test - DBT_DATASET: test_crypto_stellar + DBT_DATASET: test_crypto_stellar_public DBT_PROJECT: test-hubble-319619 DBT_MAX_BYTES_BILLED: 1000000000000 DBT_JOB_TIMEOUT: 300 diff --git a/profiles.yml b/profiles.yml index 8eb067c..d66c0a2 100644 --- a/profiles.yml +++ b/profiles.yml @@ -1,7 +1,7 @@ stellar_dbt_public: target: "{{ env_var('DBT_TARGET') }}" outputs: - prod: + prod: &default dataset: "{{ env_var('DBT_DATASET') }}" # the name of your dataset maximum_bytes_billed: "{{ env_var('DBT_MAX_BYTES_BILLED') | as_number }}" # limits the maximum number of processed bytes job_execution_timeout_seconds: "{{ env_var('DBT_JOB_TIMEOUT') | int }}" # the number of seconds dbt should wait for queries to complete, after being submitted successfully @@ -12,3 +12,6 @@ stellar_dbt_public: location: us # the BigQuery dataset location method: oauth type: bigquery + + test: + <<: *default