Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

swap source dist install + check and wheel install + check in build packages step in main.yml #10463

Merged
merged 14 commits into from
Jul 18, 2024
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,15 @@ jobs:
run: |
twine check dist/*

- name: Install source distributions
# ignore dbt-1.0.0, which intentionally raises an error when installed from source
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: Check wheel contents
run: |
check-wheel-contents dist/*.whl --ignore W007,W008
Expand All @@ -240,12 +249,3 @@ jobs:
- name: Check wheel distributions
run: |
dbt --version

- name: Install source distributions
# ignore dbt-1.0.0, which intentionally raises an error when installed from source
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
Loading