Skip to content

Commit a4aedc8

Browse files
committed
try installer for pipenv
1 parent bb25e73 commit a4aedc8

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,19 @@ jobs:
1818
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- name: Checkout repository
22+
uses: actions/checkout@v3
23+
2224
- name: Set up Python ${{ matrix.python-version }}
2325
uses: actions/setup-python@v4
2426
with:
2527
python-version: ${{ matrix.python-version }}
26-
- name: Install dependencies
27-
run: |
28-
python -m pip install --upgrade pip pipenv
29-
pipenv install --dev
28+
29+
30+
- name: Install pipenv
31+
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
32+
- run: pipenv install --dev --deploy
33+
3034
- name: Test with pytest
3135
run: pytest
3236
env:

0 commit comments

Comments
 (0)