Skip to content

Commit

Permalink
use import instead of dbt --version for package check (#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt authored Mar 11, 2024
1 parent f0cbea2 commit 7e1c1c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ jobs:
- name: Check wheel distributions
run: |
dbt --version
python -c "import dbt.adapters.snowflake"
- name: Install source distributions
run: |
find ./dist/*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/
- name: Check source distributions
run: |
dbt --version
python -c "import dbt.adapters.snowflake"

0 comments on commit 7e1c1c7

Please sign in to comment.