mirror of
https://github.com/FlipsideCrypto/boba-models.git
synced 2026-02-06 11:06:46 +00:00
23 lines
507 B
YAML
23 lines
507 B
YAML
name: dbt_run_integration_test
|
|
run-name: ${{ github.event.inputs.branch }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
branches:
|
|
- "main"
|
|
inputs:
|
|
environment:
|
|
type: string
|
|
required: true
|
|
|
|
concurrency: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
called_workflow_template:
|
|
uses: FlipsideCrypto/fsc-evm/.github/workflows/dbt_run_template_integration_test.yml@main
|
|
with:
|
|
target: ${{ inputs.environment }}
|
|
command: |
|
|
dbt test --selector 'integration_tests'
|
|
secrets: inherit
|