Skip to content

Commit 659c863

Browse files
committed
use latest pip, do no create cache in CI pipeline
1 parent b5716e8 commit 659c863

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/test.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
python-version: ${{ matrix.python-version }}
3434

3535
- name: Install dependencies
36-
run: pip install --requirement requirements-dev.txt
36+
run: |
37+
pip install --no-cache-dir --upgrade pip
38+
pip install --no-cache-dir --requirement requirements-dev.txt
3739
3840
- name: Run code linting checks
3941
run: make ci-lint
@@ -56,7 +58,7 @@ jobs:
5658
steps:
5759
- name: Finished
5860
run: |
59-
pip3 install --upgrade coveralls
61+
pip install --no-cache-dir --upgrade coveralls
6062
coveralls --service=github --finish
6163
env:
6264
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)