File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -52,13 +52,13 @@ jobs:
52
52
path : .venv
53
53
key : venv-py${{ steps.setup-python.outputs.python-version }}-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
54
54
55
+ - name : Install project
56
+ run : poetry install --no-interaction
57
+
55
58
- name : Install dependencies
56
59
if : steps.cache-dependencies.outputs.cache-hit != 'true'
57
60
run : poetry install --no-interaction --no-root --all-extras
58
61
59
- - name : Install project
60
- run : poetry install --no-interaction
61
-
62
62
- name : Run tests
63
63
run : |
64
64
poetry run pytest --cov=lf_toolkit --cov-report=xml --cov-report=term tests/
@@ -105,13 +105,13 @@ jobs:
105
105
path : .venv
106
106
key : venv-py${{ steps.setup-python.outputs.python-version }}-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
107
107
108
- - name : Install dependencies
109
- if : steps.cache-dependencies.outputs.cache-hit != 'true'
110
- run : poetry install --no-interaction --no-root
111
-
112
108
- name : Install project
113
109
run : poetry install --no-interaction
114
110
111
+ - name : Install dependencies
112
+ if : steps.cache-dependencies.outputs.cache-hit != 'true'
113
+ run : poetry install --no-interaction --no-root --all-extras
114
+
115
115
- name : Run build
116
116
run : |
117
117
poetry build
You can’t perform that action at this time.
0 commit comments