Skip to content

Commit

Permalink
install component library from requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
MFA-X-AI authored Jan 24, 2024
1 parent 1239748 commit d24627b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/run-workflow-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ jobs:
fi
- name: Install Component Library
run: xircuits install ${LIBRARY_NAME}
run: |
if [ -f "${{ env.COMPONENT_LIBRARY_PATH }}/requirements.txt" ]; then
echo "requirements.txt found, installing dependencies..."
pip install -r ${{ env.COMPONENT_LIBRARY_PATH }}/requirements.txt
else
echo "requirements.txt not found."
fi
- name: Test .xircuits Workflows
run: |
Expand Down

0 comments on commit d24627b

Please sign in to comment.