From 7e1c1c70c95b87796083b4caa3077221444432d2 Mon Sep 17 00:00:00 2001 From: colin-rogers-dbt <111200756+colin-rogers-dbt@users.noreply.github.com> Date: Mon, 11 Mar 2024 09:41:21 -0700 Subject: [PATCH] use import instead of dbt --version for package check (#926) --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a0d1ba6cb..9d3cf5536 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -202,7 +202,7 @@ jobs: - name: Check wheel distributions run: | - dbt --version + python -c "import dbt.adapters.snowflake" - name: Install source distributions run: | @@ -210,4 +210,4 @@ jobs: - name: Check source distributions run: | - dbt --version + python -c "import dbt.adapters.snowflake"