Skip to content

Commit

Permalink
Freeze dbt version for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
agnessnowplow committed Oct 4, 2024
1 parent 747155f commit e20adf2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pr_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ jobs:
# Run tests from integration_tests sub dir
working-directory: ./integration_tests
strategy:
fail-fast: false
matrix:
dbt_version: ["1.*"]
dbt_version: ["1.8.*"]
warehouse: ["postgres", "bigquery", "snowflake", "databricks", "redshift"] # TODO: Add RS self-hosted runner
services:
postgres:
Expand Down Expand Up @@ -111,7 +112,8 @@ jobs:
- name: Install dependencies
run: |
pip install wheel setuptools
pip install -Iv dbt-${{ matrix.warehouse }}==${{ matrix.dbt_version }} --upgrade
pip install -Iv pip install dbt-core>=1.8.0,<1.9.0
pip install -Iv dbt-${{ matrix.warehouse } --no-deps
dbt deps
if: ${{matrix.warehouse != 'spark'}}

Expand Down

0 comments on commit e20adf2

Please sign in to comment.