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:
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 : |
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/codecov-action@v3.1.4
58- with :
59- token : ${{ secrets.CODECOV_TOKEN }}
60-
55+ # - name: Upload coverage reports to Codecov
56+ # uses: codecov/codecov-action@v3.1.4
57+ # with:
58+ # token: ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments