Skip to content

Commit 1e2c5b9

Browse files
committed
chore(gating): added a cache to gating workflow
1 parent 6beec18 commit 1e2c5b9

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/gating.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,18 @@ jobs:
122122
echo "Disk space after cleanup:"
123123
df -h /
124124
125+
- name: Enable caching for podman-machine
126+
uses: actions/cache@v5
127+
with:
128+
path: |
129+
~/.local/share/containers
130+
~/.config/containers
131+
~/.cache/pip
132+
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
133+
restore-keys: |
134+
${{ runner.os }}-pip-
135+
${{ runner.os }}-
136+
125137
- name: Install required packages
126138
run: |
127139
python3 -m venv /var/tmp/venv

0 commit comments

Comments
 (0)