Merge pull request #5 from FlipsideCrypto/STREAM-1175/remove-unused-gha

remove unused gha
This commit is contained in:
Shah Newaz Khan 2025-03-05 19:21:29 -08:00 committed by GitHub
commit 5415e41208
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 105 deletions

View File

@ -1,28 +0,0 @@
name: integration test
run-name: ${{ github.event.inputs.branch }}
on:
workflow_dispatch:
schedule:
# Runs “Daily at midnight GMT” (see https://crontab.guru)
- cron: '0 0 * * *'
concurrency: ${{ github.workflow }}
jobs:
test:
name: ${{ matrix.environment }}
uses: ./.github/workflows/dbt.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
include:
- environment: hosted
warehouse: XSMALL
- environment: prod
warehouse: DBT_CLOUD
with:
warehouse: ${{ matrix.warehouse }}
environment: ${{ matrix.environment }}
command: dbt test -s test___utils_udf_introspect

View File

@ -1,19 +0,0 @@
name: dbt_run_dev_refresh
run-name: dbt_run_dev_refresh
on:
workflow_dispatch:
schedule:
# Runs "at 9:00 UTC" (see https://crontab.guru)
- cron: '0 9 * * *'
concurrency:
group: ${{ github.workflow }}
jobs:
dev_refresh:
uses: ./.github/workflows/dbt.yml
secrets: inherit
with:
environment: prod
command: dbt run-operation run_sp_create_prod_clone

View File

@ -1,49 +0,0 @@
name: test udfs
run-name: ${{ github.event.inputs.branch }}
on:
workflow_dispatch:
inputs:
environment:
type: choice
description: DBT Run Environment
required: true
options:
- dev
- prod
- hosted
default: dev
warehouse:
type: choice
description: Snowflake warehouse
required: true
options:
- DBT
- DBT_CLOUD
- XSMALL
default: DBT
schedule:
# Runs “Daily at midnight GMT” (see https://crontab.guru)
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}
jobs:
scheduled:
uses: ./.github/workflows/dbt.yml
if: github.event_name == 'schedule' || github.event_name == 'push'
secrets: inherit
with:
warehouse: ${{ vars.WAREHOUSE }}
environment: prod
command: dbt test --selector test_udfs --threads 24
dispatched:
uses: ./.github/workflows/dbt.yml
if: github.event_name == 'workflow_dispatch'
secrets: inherit
with:
warehouse: ${{ inputs.warehouse }}
environment: ${{ inputs.environment }}
command: dbt test --selector test_udfs --threads 24

View File

@ -1,9 +0,0 @@
selectors:
- name: test_udfs
definition:
union:
- method: package
value: livequery_models
- exclude:
- livequery_models.deploy.marketplace.quicknode.test_quicknode_solana*
- livequery_models.deploy.marketplace.quicknode.test_quicknode_polygon*