We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76f1994 commit ea7502dCopy full SHA for ea7502d
.github/workflows/build_wheels.yml
@@ -157,6 +157,13 @@ jobs:
157
mv ./wheelhouse/*.whl $(find ./wheelhouse -type f -name '*.whl' | sed 's/13_0/14_0/')
158
fi
159
160
+ - name: Test the build wheels
161
+ run: |
162
+ # Install the built wheels
163
+ pip install ./wheelhouse/*.whl
164
+ # Test the installed wheels
165
+ pytest pyci
166
+
167
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
168
with:
169
path: ./wheelhouse/*.whl
0 commit comments