Skip to content

Commit efe91de

Browse files
committed
fix: install setuptools afterward
1 parent bf979a3 commit efe91de

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/unit.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@ jobs:
3838
path: .venv
3939
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
4040
#----------------------------------------------
41-
# install setuptools
42-
#----------------------------------------------
43-
- name: Install setuptools
44-
run: pip install --upgrade setuptools
45-
#----------------------------------------------
4641
# install dependencies if cache does not exist
4742
#----------------------------------------------
4843
- name: Install dependencies
@@ -54,6 +49,11 @@ jobs:
5449
- name: Install project
5550
run: poetry install --no-interaction
5651
#----------------------------------------------
52+
# install setuptools
53+
#----------------------------------------------
54+
- name: Install setuptools
55+
run: pip install --upgrade setuptools
56+
#----------------------------------------------
5757
# run test suite
5858
#----------------------------------------------
5959
- name: Build

0 commit comments

Comments
 (0)