mirror of
https://github.com/FlipsideCrypto/solana-models.git
synced 2026-02-06 11:47:08 +00:00
add integration test files (#827)
* add integration test files * update integration test
This commit is contained in:
parent
60b69625de
commit
308b1a8179
34
.github/workflows/dbt_integration_test.yml
vendored
Normal file
34
.github/workflows/dbt_integration_test.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
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
|
||||||
7
selectors.yml
Normal file
7
selectors.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
selectors:
|
||||||
|
- name: integration_tests
|
||||||
|
description: "Selector for integration tests"
|
||||||
|
definition:
|
||||||
|
union:
|
||||||
|
- method: fqn
|
||||||
|
value: "livequery_models.deploy.core._utils"
|
||||||
Loading…
Reference in New Issue
Block a user