Bump setuptools from 75.7.0 to 75.8.0 in /requirements #258
Workflow file for this run
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: Check Pip Conflicts | |
on: | |
push: | |
branches: [develop, qa, prod] | |
pull_request: | |
branches: "**" | |
jobs: | |
check-pip-conflicts: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install pip-tools | |
run: pip install pip-tools | |
- name: Check for conflicts | |
run: | | |
exit_code=0 | |
for file in requirements/*requirements.txt; do | |
echo "Checking $file for conflicts..." | |
if pip-compile "$file" --dry-run --output-file - > /dev/null 2>&1; then | |
echo "No conflicts found in $file" | |
else | |
echo "Conflicts detected in $file" | |
pip-compile "$file" --dry-run --output-file - || true | |
exit_code=1 | |
fi | |
done | |
exit $exit_code |