Skip to content

Commit 438bb5b

Browse files
committed
Updated GitHub Action with pipenv
1 parent 9d9e129 commit 438bb5b

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/workflow.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,10 @@ jobs:
3030
- name: Checkout
3131
uses: actions/checkout@v3
3232

33-
- name: Install dependencies
33+
- name: Install Python package dependencies
3434
run: |
35-
python -m pip install poetry
36-
poetry config virtualenvs.create false
37-
poetry install
35+
python -m pip install -U pip pipenv
36+
pipenv install --system --dev
3837
3938
- name: Linting
4039
run: |
@@ -53,8 +52,7 @@ jobs:
5352
# Create a CODECOV_TOKEN in Settings->Secrets and variables->Actions
5453
# and then uncomment the CodeCov action during hands-on lab
5554

56-
- name: Upload coverage reports to Codecov
57-
uses: codecov/[email protected]
58-
with:
59-
token: ${{ secrets.CODECOV_TOKEN }}
60-
55+
# - name: Upload coverage reports to Codecov
56+
# uses: codecov/[email protected]
57+
# with:
58+
# token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)