diff --git a/.github/workflows/dbt_integration_test.yml b/.github/workflows/dbt_integration_test.yml deleted file mode 100644 index dc922dd..0000000 --- a/.github/workflows/dbt_integration_test.yml +++ /dev/null @@ -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 diff --git a/.github/workflows/dbt_run_dev_refresh.yml b/.github/workflows/dbt_run_dev_refresh.yml deleted file mode 100644 index e712a81..0000000 --- a/.github/workflows/dbt_run_dev_refresh.yml +++ /dev/null @@ -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 \ No newline at end of file diff --git a/.github/workflows/dbt_udf_test.yml b/.github/workflows/dbt_udf_test.yml deleted file mode 100644 index 92c9020..0000000 --- a/.github/workflows/dbt_udf_test.yml +++ /dev/null @@ -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 \ No newline at end of file diff --git a/selectors.yml b/selectors.yml deleted file mode 100644 index f008591..0000000 --- a/selectors.yml +++ /dev/null @@ -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* \ No newline at end of file