Merge branch 'main' into GENIE-1032/story/Add-overall-statistics-dash… #11
This file contains hidden or 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: Verify Agent Dependencies | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| push: | |
| paths: [ '.github/workflows/verify-agent-deps.yaml' ] | |
| jobs: | |
| verify_agent_deps: | |
| runs-on: linux | |
| steps: | |
| - name: Verify Agent OS Dependencies | |
| run: | | |
| echo "Verifying agent dependencies" | |
| command -v kubectl | |
| echo "Agent dependencies verified" | |
| - name: Verify Agent python Dependencies | |
| run: | | |
| echo "Verifying agent dependencies" | |
| pip freeze | grep -E 'qdrant-client' | |
| pip freeze | grep -E 'requests' | |
| echo "Agent dependencies verified" |