From 1cb68153e7a736653bd2688023deed54b65b067e Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Thu, 18 Jul 2024 15:18:32 -0400 Subject: [PATCH] swap the order of the sdist and wheel checks (#1065) --- .github/workflows/main.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 35c6a30ef..3b0a9013f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -195,15 +195,18 @@ jobs: - name: Show distributions run: ls -lh dist/ - - name: Install wheel distributions - run: | - find ./dist/*.whl -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/ - - name: Check wheel distributions - run: | - dbt --version - 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 + + - name: Install wheel distributions + run: | + find ./dist/*.whl -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/ + + - name: Check wheel distributions + run: | + dbt --version