wip
This commit is contained in:
@ -45,20 +45,20 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: bec/phoenix_bec
|
||||
ref: ${{ inputs.BEC_PLUGIN_REPO_BRANCH }}
|
||||
ref: ${{ inputs.BEC_PLUGIN_REPO_BRANCH || 'main' }}
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4
|
||||
# if: ( steps.plugin_checkout.outputs.skip_tests != 'true' )
|
||||
with:
|
||||
python-version: ${{ inputs.PYTHON_VERSION }}
|
||||
python-version: ${{ inputs.PYTHON_VERSION || '3.11' }}
|
||||
|
||||
- name: Checkout BEC Core
|
||||
uses: actions/checkout@v4
|
||||
# if: ( steps.plugin_checkout.outputs.skip_tests != 'true' )
|
||||
with:
|
||||
repository: bec/bec
|
||||
ref: ${{ inputs.BEC_CORE_BRANCH }}
|
||||
ref: ${{ inputs.BEC_CORE_BRANCH || 'main' }}
|
||||
path: ./_checkout_/bec
|
||||
|
||||
- name: Checkout Ophyd Devices
|
||||
@ -66,7 +66,7 @@ jobs:
|
||||
# if: ( steps.plugin_checkout.outputs.skip_tests != 'true' )
|
||||
with:
|
||||
repository: bec/ophyd_devices
|
||||
ref: ${{ inputs.OPHYD_DEVICES_BRANCH }}
|
||||
ref: ${{ inputs.OPHYD_DEVICES_BRANCH || 'main' }}
|
||||
path: ./_checkout_/ophyd_devices
|
||||
|
||||
- name: Checkout BEC Widgets
|
||||
@ -74,7 +74,7 @@ jobs:
|
||||
# if: ( steps.plugin_checkout.outputs.skip_tests != 'true' )
|
||||
with:
|
||||
repository: bec/bec_widgets
|
||||
ref: ${{ inputs.BEC_WIDGETS_BRANCH }}
|
||||
ref: ${{ inputs.BEC_WIDGETS_BRANCH || 'main' }}
|
||||
path: ./_checkout_/bec_widgets
|
||||
|
||||
- name: Install dependencies
|
||||
|
Reference in New Issue
Block a user