mirror of
https://github.com/FlipsideCrypto/arbitrum-models.git
synced 2026-02-06 14:17:02 +00:00
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: dbt_run_integration_test
|
|
run-name: ${{ github.event.inputs.branch }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
environment:
|
|
required: true
|
|
type: string
|
|
|
|
concurrency: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
prepare_vars:
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: ${{ inputs.environment }}
|
|
outputs:
|
|
warehouse: ${{ steps.set_outputs.outputs.warehouse }}
|
|
steps:
|
|
- name: Set warehouse output
|
|
id: set_outputs
|
|
run: |
|
|
echo "warehouse=${{ vars.WAREHOUSE }}" >> $GITHUB_OUTPUT
|
|
|
|
called_workflow_template:
|
|
needs: prepare_vars
|
|
uses: FlipsideCrypto/analytics-workflow-templates/.github/workflows/dbt.yml@main
|
|
with:
|
|
command: >
|
|
dbt test --selector 'integration_tests'
|
|
environment: ${{ inputs.environment }}
|
|
warehouse: ${{ needs.prepare_vars.outputs.warehouse }}
|
|
secrets: inherit
|
|
|
|
notify-failure:
|
|
needs: [called_workflow_template]
|
|
if: failure()
|
|
uses: ./.github/workflows/slack_notify.yml
|
|
secrets:
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|