Skip to content

Commit 32624ee

Browse files
committed
Shuffle the yaml
1 parent 360b66c commit 32624ee

File tree

1 file changed

+10
-15
lines changed

1 file changed

+10
-15
lines changed

.github/workflows/agent-memory-client.yml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)