mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 14:22:06 +00:00
* add dbt.yml and integration test gha's * update dbt selector to run all integration tests in lq package * remove fail fast strategy
20 lines
421 B
YAML
20 lines
421 B
YAML
name: integration test
|
|
run-name: ${{ github.event.inputs.branch }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
|
|
concurrency: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
test:
|
|
name: livequery_integration_test
|
|
uses: ./.github/workflows/dbt.yml
|
|
secrets: inherit
|
|
|
|
with:
|
|
warehouse: DBT_CLOUD
|
|
environment: ${{ github.ref == 'refs/heads/main' && 'prod' || 'stg' }}
|
|
command: dbt test -s 'livequery_models.deploy.core.*'
|