mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 16:06:48 +00:00
* add fix gap logic and obs models tests * block height recency test on bitquery table * add tag * upd workflow * explicit cast as int
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
name: dbt_test_scheduled
|
|
run-name: dbt_test_scheduled
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Run at 1600 UTC daily (see https://crontab.guru)
|
|
- cron: '0 16 * * *'
|
|
|
|
env:
|
|
SLACK_WEBHOOK_URL: "${{ secrets.SLACK_WEBHOOK_URL }}"
|
|
USE_VARS: "${{ vars.USE_VARS }}"
|
|
DBT_PROFILES_DIR: "${{ vars.DBT_PROFILES_DIR }}"
|
|
DBT_VERSION: "${{ vars.DBT_VERSION }}"
|
|
ACCOUNT: "${{ vars.ACCOUNT }}"
|
|
ROLE: "${{ vars.ROLE }}"
|
|
USER: "${{ vars.USER }}"
|
|
PASSWORD: "${{ secrets.PASSWORD }}"
|
|
REGION: "${{ vars.REGION }}"
|
|
DATABASE: "${{ vars.DATABASE }}"
|
|
WAREHOUSE: "${{ vars.TEST_WAREHOUSE }}"
|
|
SCHEMA: "${{ vars.SCHEMA }}"
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
run_dbt_jobs:
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: workflow_prod
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: "3.7.x"
|
|
|
|
- name: install dependencies
|
|
run: |
|
|
pip3 install dbt-snowflake==${{ env.DBT_VERSION }} cli_passthrough requests click
|
|
dbt deps
|
|
|
|
- name: Run DBT Jobs
|
|
run: |
|
|
dbt test -s models/gold tag:observability
|
|
continue-on-error: true
|
|
|
|
- name: Log test results
|
|
run: |
|
|
python python/dbt_test_alert.py
|