File tree Expand file tree Collapse file tree 2 files changed +48
-65
lines changed Expand file tree Collapse file tree 2 files changed +48
-65
lines changed Original file line number Diff line number Diff line change @@ -269,12 +269,12 @@ steps:
269269``` yaml
270270steps :
271271- uses : actions/checkout@v3
272- - name : Install pipenv
273- run : pipx install pipenv
274272- uses : actions/setup-python@v4
275273 with :
276274 python-version : ' 3.9'
277275 cache : ' pipenv'
276+ - name : Install pipenv
277+ run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
278278- run : pipenv install
279279` ` `
280280
@@ -308,15 +308,15 @@ steps:
308308` ` ` yaml
309309steps :
310310- uses : actions/checkout@v3
311- - name : Install pipenv
312- run : pipx install pipenv
313311- uses : actions/setup-python@v4
314312 with :
315313 python-version : ' 3.9'
316314 cache : ' pipenv'
317315 cache-dependency-path : |
318316 server/app/Pipfile.lock
319317 __test__/app/Pipfile.lock
318+ - name : Install pipenv
319+ run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
320320- run : pipenv install
321321` ` `
322322
You can’t perform that action at this time.
0 commit comments