Skip to content

Commit 8bfce8a

Browse files
committed
fix ci workflow
1 parent d5ba5be commit 8bfce8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
run: uv sync --all-extras
2727

2828
- name: Check formatting with Black
29-
run: uv run black --check decart_sdk/ tests/ examples/
29+
run: uv run black --check decart/ tests/ examples/
3030

3131
- name: Lint with Ruff
32-
run: uv run ruff check decart_sdk/ tests/ examples/
32+
run: uv run ruff check decart/ tests/ examples/
3333

3434
- name: Type check with MyPy
35-
run: uv run mypy decart_sdk/
35+
run: uv run mypy decart/
3636
continue-on-error: true # Don't fail on type errors yet
3737

3838
test:
@@ -58,7 +58,7 @@ jobs:
5858
run: uv sync --all-extras
5959

6060
- name: Run tests
61-
run: uv run pytest tests/ -v --cov=decart_sdk --cov-report=xml --cov-report=term
61+
run: uv run pytest tests/ -v --cov=decart --cov-report=xml --cov-report=term
6262

6363
- name: Upload coverage to Codecov
6464
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)