File tree Expand file tree Collapse file tree 1 file changed +10
-15
lines changed
Expand file tree Collapse file tree 1 file changed +10
-15
lines changed Original file line number Diff line number Diff line change @@ -28,29 +28,24 @@ jobs:
2828 uses : astral-sh/setup-uv@v3
2929
3030 - name : Install dependencies
31- run : |
32- cd agent-memory-client
33- uv sync --extra dev
31+ working-directory : agent-memory-client
32+ run : uv sync --extra dev
3433
3534 - name : Lint with Ruff
36- run : |
37- cd agent-memory-client
38- uv run ruff check agent_memory_client
35+ working-directory : agent-memory-client
36+ run : uv run ruff check agent_memory_client
3937
4038 - name : Check formatting with Ruff formatter
41- run : |
42- cd agent-memory-client
43- uv run ruff format --check agent_memory_client
39+ working-directory : agent-memory-client
40+ run : uv run ruff format --check agent_memory_client
4441
4542 - name : Type check with mypy
46- run : |
47- cd agent-memory-client
48- uv run mypy agent_memory_client
43+ working-directory : agent-memory-client
44+ run : uv run mypy agent_memory_client
4945
5046 - name : Run tests
51- run : |
52- cd agent-memory-client
53- uv run pytest tests/ --cov=agent_memory_client --cov-report=xml
47+ working-directory : agent-memory-client
48+ run : uv run pytest tests/ --cov=agent_memory_client --cov-report=xml
5449
5550 publish-testpypi :
5651 name : Publish to TestPyPI
You can’t perform that action at this time.
0 commit comments