Skip to content

Commit

Permalink
fix workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Czaki committed Jul 31, 2024
1 parent e3baab7 commit febcd89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/base_test_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ jobs:
PYVISTA_OFF_SCREEN: True # required for opengl on windows
NAPARI: ${{ inputs.napari }}
BACKEND: ${{ inputs.qt_backend }}
PIP_CONSTRAINT: ${{ inputs.napari == 'latest' && requirements/constraints_py${{ inputs.python_version }}${{ inputs.pydantic }}.txt || '' }}
UV_CONSTRAINT: ${{ inputs.napari == 'latest' && requirements/constraints_py${{ inputs.python_version }}${{ inputs.pydantic }}.txt || '' }}
PIP_CONSTRAINT: ${{ inputs.napari == 'latest' && format('requirements/constraints_py{0}{1}.txt', inputs.python_version, inputs.pydantic ) || '' }}
UV_CONSTRAINT: ${{ inputs.napari == 'latest' && format('requirements/constraints_py{0}{1}.txt', inputs.python_version, inputs.pydantic ) || '' }}

- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit febcd89

Please sign in to comment.