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 a2396bd commit 1702b4dCopy full SHA for 1702b4d
.github/workflows/test.yaml
@@ -28,6 +28,16 @@ jobs:
28
- name: Show built files
29
run: |
30
ls -l dist/*
31
+ - name: Type Checking
32
+ run: |
33
+ python -m mypy
34
+ - name: Tests
35
36
+ for wheel in $(find dist -name "*manylinux*_x86_64.whl"); do
37
+ echo "Testing installation with wheel: ${wheel}"
38
+ pip install ${wheel}
39
+ python -m pytest
40
+ done
41
- uses: actions/upload-artifact@v3
42
with:
43
name: nodejs-pip-wheels
.gitignore
@@ -5,4 +5,8 @@ nodejs-cmd/*.egg-info
5
.DS_Store
6
env*/
7
__pycache__/
8
-*.py[cod]
+*.py[cod]
9
+venv
10
+node_modules
11
+package-lock.json
12
+package.json
0 commit comments