We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b969a9c commit 525bcfaCopy full SHA for 525bcfa
.github/workflows/ci.yml
@@ -42,11 +42,14 @@ jobs:
42
- name: Install tau2 for testing
43
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@main
44
45
- - name: Lint with flake8
46
- run: uv run flake8 eval_protocol tests examples scripts --count --exit-zero --max-complexity=10 --max-line-length=88 --statistics
+ - name: Ruff format (check)
+ run: uv run ruff format --check .
47
48
- - name: Type check with mypy
49
- run: uv run mypy eval_protocol
+ - name: Ruff lint
+ run: uv run ruff check .
50
+
51
+ - name: Type check with pyright
52
+ run: uv run pyright
53
54
test-core:
55
name: Core Tests (Python ${{ matrix.python-version }})
0 commit comments