We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7feb447 commit 1f59449Copy full SHA for 1f59449
.github/workflows/type-check.yml .github/workflows/ci.yml.github/workflows/type-check.yml renamed to .github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: Type Check
+name: CI
2
3
on:
4
push:
@@ -7,7 +7,7 @@ on:
7
branches: [main]
8
9
jobs:
10
- type-check:
+ test:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
@@ -20,5 +20,14 @@ jobs:
20
- name: Install uv
21
uses: astral-sh/setup-uv@v4
22
23
- - name: Run mypy
24
- run: uv run mypy src/agent_chat_cli
+ - name: Install dependencies
+ run: uv sync --all-groups
25
+
26
+ - name: Run linter
27
+ run: uv run ruff check src tests
28
29
+ - name: Run type checker
30
+ run: uv run mypy src
31
32
+ - name: Run tests
33
+ run: uv run pytest
0 commit comments