From c893b4a749769f0b7b727af6e66fbd98f4aaa871 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Wed, 25 Jun 2025 20:33:08 +0200 Subject: [PATCH] wip --- .gitea/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e65a5aa..2d5edcf 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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