Skip to content

Commit

Permalink
Merge pull request #19 from jpantos/fix/add-working-directory
Browse files Browse the repository at this point in the history
fix: add working directory
  • Loading branch information
jpantos authored Aug 16, 2024
2 parents aabe5a0 + 1145f6c commit 5998c24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/actions/install-poetry/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ inputs:
description: "OS used by the runner"
default: "ubuntu-22.04"


runs:
using: composite
steps:
Expand Down
5 changes: 5 additions & 0 deletions .github/actions/install-python-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ inputs:
required: true
description: "OS used by the runner"
default: "ubuntu-22.04"
working-directory:
required: false
description: "Working directory"
default: "."

runs:
using: composite
Expand All @@ -30,3 +34,4 @@ runs:
shell: bash
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --without dev --no-interaction --no-root
working-directory: ${{ inputs.working-directory }}

0 comments on commit 5998c24

Please sign in to comment.