Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Majikjack620 committed Jun 14, 2023
1 parent 3f24dd1 commit 86612e0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ jobs:
run: |
pip list --outdated
pip list --outdated >> dependent.txt
echo "### :small_red_triangle: OUTDATED/MISSING Dependencies List :small_red_triangle:" >> $GITHUB_STEP_SUMMARY
printf "### :small_red_triangle: OUTDATED/MISSING Dependencies List :small_red_triangle:\n" >> $GITHUB_STEP_SUMMARY
python read_file.py >> $GITHUB_STEP_SUMMARY
echo "##### Update these dependencies to the required version before merging:" >> $GITHUB_STEP_SUMMARY
echo "- Ensure that ALL dependencies in the `requirements.txt` file are connected to their version with `>=` and not `==` (i.e. `pandas>=1.5.1`)" >> $GITHUB_STEP_SUMMARY
echo "- Run the following command within the folder the `requirements.txt` file resides" >> $GITHUB_STEP_SUMMARY
echo "```" >> $GITHUB_STEP_SUMMARY
printf "##### Update these dependencies to the required version before merging:\n" >> $GITHUB_STEP_SUMMARY
printf "- Ensure that ALL dependencies in the `requirements.txt` file are connected to their version with `>=` and not `==` (i.e. `pandas>=1.5.1`)" >> $GITHUB_STEP_SUMMARY
printf "- Run the following command within the folder the `requirements.txt` file resides" >> $GITHUB_STEP_SUMMARY
printf "```" >> $GITHUB_STEP_SUMMARY
echo " pip install -r requirements.txt --upgrade"
echo "```" >> $GITHUB_STEP_SUMMARY
printf "```" >> $GITHUB_STEP_SUMMARY

0 comments on commit 86612e0

Please sign in to comment.