mirror of
https://github.com/FlipsideCrypto/near-models.git
synced 2026-02-06 11:26:52 +00:00
17 lines
488 B
YAML
17 lines
488 B
YAML
name: dbt_run_integration_test
|
|
run-name: ${{ github.event.inputs.branch }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
concurrency: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
called_workflow_template:
|
|
uses: FlipsideCrypto/analytics-workflow-templates/.github/workflows/dbt.yml@main
|
|
with:
|
|
command: >
|
|
dbt test --selector 'integration_tests'
|
|
environment: ${{ github.ref == 'refs/heads/main' && 'workflow_prod' || 'workflow_dev' }}
|
|
warehouse: ${{ vars.WAREHOUSE }}
|
|
secrets: inherit |