We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6beec18 commit 1e2c5b9Copy full SHA for 1e2c5b9
1 file changed
.github/workflows/gating.yaml
@@ -122,6 +122,18 @@ jobs:
122
echo "Disk space after cleanup:"
123
df -h /
124
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
+
137
- name: Install required packages
138
run: |
139
python3 -m venv /var/tmp/venv
0 commit comments