diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bd883b7..2f87b4c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,6 +24,7 @@ jobs: strategy: matrix: python-version: [ "3.8", "3.9", "3.10", "3.11" ] + dbt-version: [ "1.6", "1.7", "1.8" ] steps: - uses: actions/checkout@v4 @@ -31,9 +32,11 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + dbt-version: ${{ matrix.dbt-version }} - name: Build & Install run: | python --version + pip install dbt-core~=${{ matrix.dbt-version }} python setup.py install python -m pip install coverage pylint python -m compileall -f opendbt setup.py