Skip to content

Commit

Permalink
Add Path for windows machines
Browse files Browse the repository at this point in the history
  • Loading branch information
kulbachcedric committed Dec 25, 2024
1 parent b8c161f commit eedf483
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ jobs:
virtualenvs-in-project: true
installer-parallel: true

- name: Add Poetry to PATH on Windows (If using Windows)
if: runner.os == 'Windows'
run: |
$env:Path = "$env:HOME\.poetry\bin;$env:Path"
echo "Poetry added to PATH"
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
Expand Down

0 comments on commit eedf483

Please sign in to comment.