Test all warehouse platforms #897
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test all warehouse platforms | |
on: | |
schedule: | |
- cron: "0 */8 * * *" | |
workflow_dispatch: | |
inputs: | |
elementary-ref: | |
type: string | |
required: false | |
description: Branch or tag to checkout for 'elementary' repository | |
dbt-data-reliability-ref: | |
type: string | |
required: false | |
description: Branch or tag to checkout for 'dbt-data-reliability' repository | |
dbt-version: | |
type: string | |
required: false | |
description: dbt's version to test with | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
warehouse-type: [postgres, snowflake, bigquery, redshift, databricks] | |
uses: ./.github/workflows/test-warehouse.yml | |
with: | |
warehouse-type: ${{ matrix.warehouse-type }} | |
elementary-ref: ${{ inputs.elementary-ref }} | |
dbt-data-reliability-ref: ${{ inputs.dbt-data-reliability-ref }} | |
dbt-version: ${{ inputs.dbt-version }} | |
secrets: inherit |