Skip to content

Commit 4bb8bfe

Browse files
committed
fix: github action for merge gate
1 parent 619852c commit 4bb8bfe

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/mcp_tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,15 @@ jobs:
1414
uses: actions/setup-python@v5
1515
with:
1616
python-version: '3.12'
17-
cache: 'uv'
17+
18+
- name: Cache uv dependencies
19+
uses: actions/cache@v4
20+
with:
21+
path: ~/.cache/uv
22+
key: ${{ runner.os }}-uv-${{ hashFiles('**/uv.lock') }}
23+
restore-keys: |
24+
${{ runner.os }}-uv-
25+
1826
- name: Install dependencies
1927
run: uv pip install .
2028
working-directory: ./mcp

0 commit comments

Comments
 (0)