Skip to content

Commit d75f118

Browse files
committed
separate typecheck into its own make target
1 parent 8aee74a commit d75f118

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- run: pip install . -r requirements-dev-full.txt
2828
- run: make test
2929
- run: make lint
30+
- run: make typecheck
3031

3132
build_and_test_old_deps:
3233
runs-on: ${{ matrix.os }}

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ test:
1212

1313
lint:
1414
$(PYTHON) -m pylint trio_websocket/ tests/ autobahn/ examples/
15+
16+
typecheck:
1517
$(PYTHON) -m mypy --explicit-package-bases trio_websocket tests autobahn examples
1618

1719
publish:

0 commit comments

Comments
 (0)