We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5716e8 commit 659c863Copy full SHA for 659c863
1 file changed
.github/workflows/test.yaml
@@ -33,7 +33,9 @@ jobs:
33
python-version: ${{ matrix.python-version }}
34
35
- name: Install dependencies
36
- run: pip install --requirement requirements-dev.txt
+ run: |
37
+ pip install --no-cache-dir --upgrade pip
38
+ pip install --no-cache-dir --requirement requirements-dev.txt
39
40
- name: Run code linting checks
41
run: make ci-lint
@@ -56,7 +58,7 @@ jobs:
56
58
steps:
57
59
- name: Finished
60
run: |
- pip3 install --upgrade coveralls
61
+ pip install --no-cache-dir --upgrade coveralls
62
coveralls --service=github --finish
63
env:
64
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments