Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
[CI] More bug fixes in new action
Browse files Browse the repository at this point in the history
Had syntax mistakes
  • Loading branch information
igiloh-pinecone committed Oct 29, 2023
1 parent 2d97d08 commit dce3acd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/install-deps-and-canopy/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Install dependencies and canopy
description: "Installs Poetry, dependencies and optionally canopy library"
inputs:
python-version:
description: "Python version"
Expand Down Expand Up @@ -38,6 +39,6 @@ runs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --with dev
- name: Install project
if: {{ inputs.install-canopy == 'true' }}
if: ${{ inputs.install-canopy == 'true' }}
shell: bash
run: poetry install --no-interaction

0 comments on commit dce3acd

Please sign in to comment.