Skip to content

Commit 525bcfa

Browse files
committed
update CI
1 parent b969a9c commit 525bcfa

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,14 @@ jobs:
4242
- name: Install tau2 for testing
4343
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@main
4444

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
45+
- name: Ruff format (check)
46+
run: uv run ruff format --check .
4747

48-
- name: Type check with mypy
49-
run: uv run mypy eval_protocol
48+
- name: Ruff lint
49+
run: uv run ruff check .
50+
51+
- name: Type check with pyright
52+
run: uv run pyright
5053

5154
test-core:
5255
name: Core Tests (Python ${{ matrix.python-version }})

0 commit comments

Comments
 (0)