We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df96ca4 commit f57d9a5Copy full SHA for f57d9a5
.github/workflows/ci.yml
@@ -20,7 +20,14 @@ jobs:
20
architecture: x64
21
cache: 'pip'
22
23
- - name: Install Poetry manager
+ - name: Install Poetry (Windows)
24
+ if: runner.os == 'Windows'
25
+ run: |
26
+ (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python -
27
+ echo "$HOME\AppData\Roaming\Python\Scripts" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
28
+
29
+ - name: Install Poetry (Unix)
30
+ if: runner.os != 'Windows'
31
run: pip install --upgrade poetry
32
33
- name: Install Dependencies
@@ -57,7 +64,7 @@ jobs:
57
64
58
65
59
66
60
67
+ - name: Install Poetry
61
68
62
69
63
70
0 commit comments