-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
CIContinuous Integration ToolingContinuous Integration ToolingChoreMiscellaneous chores to maintain the projectMiscellaneous chores to maintain the projectConfigsImprovements or additions to configurationImprovements or additions to configurationGitHubAnything MetaAnything Meta
Milestone
Description
Consider adding caching for Python dependencies.
The BUILD job could benefit from caching pip dependencies to improve workflow execution time.
Add caching after the Python setup:
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.12"
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
Metadata
Metadata
Assignees
Labels
CIContinuous Integration ToolingContinuous Integration ToolingChoreMiscellaneous chores to maintain the projectMiscellaneous chores to maintain the projectConfigsImprovements or additions to configurationImprovements or additions to configurationGitHubAnything MetaAnything Meta
Type
Projects
Status
Archive Backlog