File tree 2 files changed +48
-65
lines changed
2 files changed +48
-65
lines changed Original file line number Diff line number Diff line change @@ -269,12 +269,12 @@ steps:
269
269
``` yaml
270
270
steps :
271
271
- uses : actions/checkout@v3
272
- - name : Install pipenv
273
- run : pipx install pipenv
274
272
- uses : actions/setup-python@v4
275
273
with :
276
274
python-version : ' 3.9'
277
275
cache : ' pipenv'
276
+ - name : Install pipenv
277
+ run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
278
278
- run : pipenv install
279
279
` ` `
280
280
@@ -308,15 +308,15 @@ steps:
308
308
` ` ` yaml
309
309
steps :
310
310
- uses : actions/checkout@v3
311
- - name : Install pipenv
312
- run : pipx install pipenv
313
311
- uses : actions/setup-python@v4
314
312
with :
315
313
python-version : ' 3.9'
316
314
cache : ' pipenv'
317
315
cache-dependency-path : |
318
316
server/app/Pipfile.lock
319
317
__test__/app/Pipfile.lock
318
+ - name : Install pipenv
319
+ run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
320
320
- run : pipenv install
321
321
` ` `
322
322
You can’t perform that action at this time.
0 commit comments