Skip to content

Commit 7d64a4a

Browse files
committed
fix: optimize CI configuration for pyright
Signed-off-by: Luca Muscariello <muscariello@ieee.org>
1 parent f3d5c04 commit 7d64a4a

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/linter.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ jobs:
4444
continue-on-error: true
4545
run: uv run mypy src
4646

47-
- name: Install dependencies
48-
run: uv sync --all-extras
49-
5047
- name: Run Pyright (Pylance equivalent)
5148
id: pyright
5249
continue-on-error: true

pyrightconfig.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"venvPath": ".",
3+
"venv": ".venv",
4+
"include": [
5+
"src"
6+
],
7+
"exclude": [
8+
"**/__pycache__",
9+
"src/a2a/types"
10+
],
11+
"reportMissingImports": false,
12+
"reportMissingModuleSource": false
13+
}

0 commit comments

Comments
 (0)