Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 874336c

Browse files
authored
Add --strict option to all twine check commands (#927)
1 parent 8174361 commit 874336c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-wheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
133133
- name: Check cuda.core wheel
134134
run: |
135-
twine check ${{ env.CUDA_CORE_ARTIFACTS_DIR }}/*.whl
135+
twine check --strict ${{ env.CUDA_CORE_ARTIFACTS_DIR }}/*.whl
136136
137137
- name: Upload cuda.core build artifacts
138138
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
@@ -179,7 +179,7 @@ jobs:
179179
180180
- name: Check cuda.bindings wheel
181181
run: |
182-
twine check ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}/*.whl
182+
twine check --strict ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}/*.whl
183183
184184
- name: Upload cuda.bindings build artifacts
185185
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
@@ -194,7 +194,7 @@ jobs:
194194
run: |
195195
pushd cuda_python
196196
pip wheel -v --no-deps .
197-
twine check *.whl
197+
twine check --strict *.whl
198198
popd
199199
200200
- name: List the cuda-python artifacts directory

0 commit comments

Comments
 (0)