Merge pull request #71 from GitGinocchio/dependabot/pip/certifi-2025.… #84
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Check Packages Conflicts | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
check-packages-conficts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Try installing packages | |
run: | | |
python -m pip install -r requirements.txt || { | |
echo "Error installing packages:" | |
cat $(pip list --format=columns | grep Error) | |
exit 1 | |
} |