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 cc75636 commit ef0e6daCopy full SHA for ef0e6da
.github/workflows/python-test.yml
@@ -38,3 +38,20 @@ 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
+ python -m venv $temp/venv
55
+ $temp/venv/pip install mypy ./dist/*whl
56
+ echo 'import pythonosc' > $temp/demo.py
57
+ $temp/venv/mypy $temp/demo.py
0 commit comments