File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,10 @@ jobs:
30
30
- name : Checkout
31
31
uses : actions/checkout@v3
32
32
33
- - name : Install dependencies
33
+ - name : Install Python package dependencies
34
34
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
38
37
39
38
- name : Linting
40
39
run : |
53
52
# Create a CODECOV_TOKEN in Settings->Secrets and variables->Actions
54
53
# and then uncomment the CodeCov action during hands-on lab
55
54
56
- - name : Upload coverage reports to Codecov
57
-
58
- with :
59
- token : ${{ secrets.CODECOV_TOKEN }}
60
-
55
+ # - name: Upload coverage reports to Codecov
56
+
57
+ # with:
58
+ # token: ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments