File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 82
82
# I think musl always uses apk, but keep all options available.
83
83
CIBW_BEFORE_ALL : yum install -y bzip2-devel || apt-get install libbz2-dev || apk add --upgrade bzip2-dev
84
84
85
+ - name : test wheel for python ${{ env.PYVER }}
86
+ run : |
87
+ pystr='${{ env.PYVER }}'
88
+ pystr=${pystr//./}
89
+ python -m pip install pip
90
+ pip install numpy pytest
91
+ pip install ./wheelhouse/*cp${pystr}*.whl
92
+ pytest --pyargs fitsio
93
+
85
94
- uses : actions/upload-artifact@v4
86
95
with :
87
96
name : whl-musl
@@ -107,6 +116,15 @@ jobs:
107
116
CIBW_ENVIRONMENT : >-
108
117
MACOSX_DEPLOYMENT_TARGET=13.0
109
118
119
+ - name : test wheel for python ${{ env.PYVER }}
120
+ run : |
121
+ pystr='${{ env.PYVER }}'
122
+ pystr=${pystr//./}
123
+ python -m pip install pip
124
+ pip install numpy pytest
125
+ pip install ./wheelhouse/*cp${pystr}*.whl
126
+ pytest --pyargs fitsio
127
+
110
128
- uses : actions/upload-artifact@v4
111
129
with :
112
130
name : whl-macos
@@ -132,6 +150,15 @@ jobs:
132
150
CIBW_ENVIRONMENT : >-
133
151
MACOSX_DEPLOYMENT_TARGET=14.7
134
152
153
+ - name : test wheel for python ${{ env.PYVER }}
154
+ run : |
155
+ pystr='${{ env.PYVER }}'
156
+ pystr=${pystr//./}
157
+ python -m pip install pip
158
+ pip install numpy pytest
159
+ pip install ./wheelhouse/*cp${pystr}*.whl
160
+ pytest --pyargs fitsio
161
+
135
162
- uses : actions/upload-artifact@v4
136
163
with :
137
164
name : whl-arm
You can’t perform that action at this time.
0 commit comments