Skip to content

Commit

Permalink
Fix setup_script.sh detection in ragger reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fbeutin-ledger committed Mar 12, 2024
1 parent 264afdf commit f7cd7d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable_ragger_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
sudo apt-get update && sudo apt-get install -y qemu-user-static tesseract-ocr libtesseract-dev
pip install -U pip setuptools
pip install -r "${{ needs.call_get_app_metadata.outputs.pytest_directory }}/requirements.txt"
[[ -f ${{ needs.call_get_app_metadata.outputs.pytest_directory}}/setup_script.sh ]] && ./${{ needs.call_get_app_metadata.outputs.pytest_directory }}/setup_script.sh
if [[ -f ${{ needs.call_get_app_metadata.outputs.pytest_directory }}/setup_script.sh ]]; then ./${{ needs.call_get_app_metadata.outputs.pytest_directory }}/setup_script.sh; fi
- name: Run test
env:
Expand Down

0 comments on commit f7cd7d3

Please sign in to comment.