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.
2 parents cc75636 + fdcb4d2 commit a49c219Copy full SHA for a49c219
.github/workflows/python-test.yml
@@ -38,3 +38,26 @@ jobs:
38
steps:
39
- uses: actions/checkout@v3
40
- uses: psf/black@stable
41
+
42
+ check-types-published:
43
+ runs-on: ubuntu-latest
44
+ steps:
45
+ - uses: actions/checkout@v3
46
+ - uses: actions/setup-python@v5
47
+ with:
48
+ python-version: '3.12'
49
+ - run: |
50
+ pip install build
51
+ python -m build --sdist --wheel
52
53
+ temp=$(mktemp -d)
54
55
+ python -m venv $temp/venv
56
+ source $temp/venv/bin/activate
57
58
+ pip install mypy ./dist/*whl
59
60
+ cd $temp
61
62
+ echo 'import pythonosc' > demo.py
63
+ mypy demo.py
py.typed pythonosc/py.typedpy.typed renamed to pythonosc/py.typed
0 commit comments