Skip to content

Commit b823319

Browse files
authored
Move setup-python block before poetry install (#99)
Signed-off-by: Fabrice Normandin <[email protected]>
1 parent 637f0b5 commit b823319

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,17 @@ jobs:
2020
environment: release
2121
steps:
2222
- uses: actions/checkout@v4
23-
- name: Install poetry
24-
run: |
25-
python -m pip install --upgrade pip
26-
pip install poetry
2723

2824
- name: Set up Python ${{ matrix.python-version }}
2925
uses: actions/setup-python@v4
3026
with:
3127
python-version: ${{ matrix.python-version }}
3228

29+
- name: Install poetry
30+
run: |
31+
python -m pip install --upgrade pip
32+
pip install poetry
33+
3334
- name: Install dependencies
3435
run: |
3536
poetry install

0 commit comments

Comments
 (0)