mirror of
https://github.com/FlipsideCrypto/movement-models.git
synced 2026-02-06 11:46:43 +00:00
added noncore WF
This commit is contained in:
parent
114689da5b
commit
c26c9d1ab2
44
.github/workflows/dbt_run_noncore.yml
vendored
Normal file
44
.github/workflows/dbt_run_noncore.yml
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
name: dbt_run_noncore
|
||||||
|
run-name: dbt_run_noncore
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "25,55 0/4 * * *"
|
||||||
|
|
||||||
|
env:
|
||||||
|
DBT_PROFILES_DIR: "${{ vars.DBT_PROFILES_DIR }}"
|
||||||
|
|
||||||
|
ACCOUNT: "${{ vars.ACCOUNT }}"
|
||||||
|
ROLE: "${{ vars.ROLE }}"
|
||||||
|
USER: "${{ vars.USER }}"
|
||||||
|
PASSWORD: "${{ secrets.PASSWORD }}"
|
||||||
|
REGION: "${{ vars.REGION }}"
|
||||||
|
DATABASE: "${{ vars.DATABASE }}"
|
||||||
|
WAREHOUSE: "${{ vars.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@v4
|
||||||
|
with:
|
||||||
|
python-version: "${{ vars.PYTHON_VERSION }}"
|
||||||
|
cache: "pip"
|
||||||
|
|
||||||
|
- name: install dependencies
|
||||||
|
run: |
|
||||||
|
pip install -r requirements.txt
|
||||||
|
dbt deps
|
||||||
|
- name: Run DBT Jobs
|
||||||
|
run: |
|
||||||
|
dbt run -m movement_models,tag:noncore
|
||||||
Loading…
Reference in New Issue
Block a user