Skip to content

Commit

Permalink
Modify to test with multiple versions of dbt-core (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
syou6162 authored May 16, 2024
1 parent a1c2109 commit e4962bf
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ jobs:
tests:
name: Run pytest
runs-on: ubuntu-latest

strategy:
matrix:
dbt-version: ["1.6.0", "1.7.0"]

steps:
- name: Check out the repository
uses: actions/[email protected]
Expand All @@ -27,6 +32,10 @@ jobs:
pip install --constraint=.github/workflows/constraints.txt poetry
poetry --version
- name: Install dbt-core
run: |
poetry add dbt-core==${{ matrix.dbt-version }}
- name: Install required packages
run: | # install duckdb extras to be able to parse manifest
poetry install -E duckdb
Expand Down

0 comments on commit e4962bf

Please sign in to comment.