Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer committed Dec 5, 2023
1 parent ef91cad commit 311ae4b
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,17 +192,16 @@ jobs:
- run: python -m pip install .[allauth,shibboleth,ci,dev,gunicorn,ldap,mysql,postgres,pytest]
- name: Write info to step summary
run: |
echo -e "# ✓ All optional dependency groups successfully installed in combination\n\n" >> $GITHUB_STEP_SUMMARY
echo "## Installed Python packages as dependency tree" >> $GITHUB_STEP_SUMMARY
echo "\`\`\`console" >> $GITHUB_STEP_SUMMARY
echo "$ python -m pipdeptree --local-only --exclude=pip,pipdeptree" >> $GITHUB_STEP_SUMMARY
python -m pipdeptree --local-only --exclude=pip,pipdeptree >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
echo "## Outdated dependencies" >> $GITHUB_STEP_SUMMARY
echo "\`\`\`console" >> $GITHUB_STEP_SUMMARY
echo "$ python -m pip list --outdated" >> $GITHUB_STEP_SUMMARY
python -m pip list --outdated >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
{
echo -e "# ✓ All optional dependency groups successfully installed in combination\n\n"
echo "## Installed Python packages as dependency tree"
echo -e "\`\`\`console\n$ python -m pipdeptree --local-only --exclude=pip,pipdeptree"
python -m pipdeptree --local-only --exclude=pip,pipdeptree
echo -e "\`\`\`\n## Outdated dependencies"
echo -e "\`\`\`console\n$ python -m pip list --outdated"
python -m pip list --outdated
echo "\`\`\`"
} >> $GITHUB_STEP_SUMMARY
# required-checks-pass:
# if: always()
Expand Down

0 comments on commit 311ae4b

Please sign in to comment.