Skip to content

Commit c923fc2

Browse files
committed
CI: simplify the type-checking commands
1 parent 89dccfc commit c923fc2

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/workflows/type_check.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,10 @@ jobs:
2525
run: |
2626
uv venv .venv
2727
source .venv/bin/activate
28-
uv pip install ".[test]" numpy mypy
28+
uv pip install . numpy mypy
2929
3030
- name: run mypy
31-
run: >
32-
mypy
33-
--tb
34-
--no-incremental
35-
--cache-dir=/dev/null
36-
--soft-error-limit=-1
37-
numpy_financial
31+
run: mypy --no-incremental --cache-dir=/dev/null .
3832

3933
- name: run pyright
4034
uses: jakebailey/pyright-action@v2
41-
with:
42-
working-directory: numpy_financial

0 commit comments

Comments
 (0)