File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 11name : Simulation Bridge Tests
22
33on :
4- push :
54 pull_request :
65
76jobs :
@@ -23,12 +22,19 @@ jobs:
2322
2423 - name : Install Poetry
2524 run : |
26- curl -sSL https://install.python-poetry.org | python3 -
27- shell : bash
25+ python -m pip install --upgrade pip
26+ curl -sSL https://install.python-poetry.org | python -
27+ env :
28+ POETRY_HOME : ${{ runner.temp }}/poetry
2829
2930 - name : Add Poetry to PATH
30- run : echo "$HOME/.local/bin" >> $GITHUB_PATH
31- shell : bash
31+ run : echo "${{ runner.temp }}/poetry/bin" >> $GITHUB_PATH
32+ if : runner.os != 'Windows'
33+
34+ - name : Add Poetry to PATH on Windows
35+ run : echo "${{ runner.temp }}\poetry\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8
36+ if : runner.os == 'Windows'
37+ shell : pwsh
3238
3339 - name : Install dependencies via Poetry
3440 run : |
You can’t perform that action at this time.
0 commit comments