Skip to content

Commit

Permalink
updated ci to working command
Browse files Browse the repository at this point in the history
  • Loading branch information
ZohebShaikh committed Aug 23, 2024
1 parent bce8081 commit 53ea6ff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/install_requirements/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ runs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install packages
run: pip install ${{ inputs.pip-install }}
run: pip install $([ -f dev-requirements.txt ] && echo '-c dev-requirements.txt') -e .[dev]
shell: bash

- name: Install bluesky_stomp
run: pip install git+https://github.com/DiamondLightSource/bluesky-stomp.git@main
shell: bash

- name: Report what was installed
Expand Down

0 comments on commit 53ea6ff

Please sign in to comment.