Skip to content

Commit

Permalink
Remove pip caching in GitHub Actions workflow
Browse files Browse the repository at this point in the history
The caching of pip dependencies in the GitHub Actions workflow file has been removed. This adjustment may slightly impact performance, however it ensures a fresh pip environment for each run, reducing potential inconsistencies or errors.
  • Loading branch information
dvershinin committed Dec 19, 2023
1 parent a8bd85d commit 9672dea
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies will speed up subsequent runs

- name: Install dependencies
run: |
Expand Down

0 comments on commit 9672dea

Please sign in to comment.