Skip to content

Commit 519255c

Browse files
committed
Add windows build to test workflow
1 parent 956f1b2 commit 519255c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,13 @@ jobs:
7373
virtualenvs-create: true
7474
virtualenvs-in-project: true
7575
#----------------------------------------------
76-
# ----- Add poetry to path on windows -----
76+
# Add Poetry to PATH on Windows
7777
#----------------------------------------------
78-
- name: Configure Poetry on Windows
78+
- name: Add Poetry to PATH (Windows)
7979
if: matrix.os == 'windows-latest'
8080
run: |
81-
$env:PATH = "C:\Python${{ matrix.python-version }};C:\Python${{ matrix.python-version }}\Scripts;$env:PATH"
81+
$env:Path += ";C:\Users\runneradmin\AppData\Roaming\Python\Scripts"
82+
echo "PATH updated for Poetry"
8283
#----------------------------------------------
8384
# load cached venv if cache exists
8485
#----------------------------------------------

0 commit comments

Comments
 (0)