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:
28
28
uses : astral-sh/setup-uv@v3
29
29
30
30
- 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
34
33
35
34
- 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
39
37
40
38
- 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
44
41
45
42
- 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
49
45
50
46
- 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
54
49
55
50
publish-testpypi :
56
51
name : Publish to TestPyPI
You can’t perform that action at this time.
0 commit comments