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 40c40b6 commit 13f555bCopy full SHA for 13f555b
.github/workflows/kit.yml
@@ -292,10 +292,15 @@ jobs:
292
merge-multiple: true
293
294
- name: "List distributions"
295
+ env:
296
+ # PYVERSIONS: changing the list of versions will change the number of
297
+ # expected distributions.
298
+ EXPECTED: 63
299
run: |
300
ls -alR
- echo "Number of dists, there should be 72:"
301
+ echo "Number of dists, there should be $EXPECTED:"
302
ls -1 coverage-* | wc -l
303
+ files=$(ls coverage-* 2>/dev/null | wc -l) && [ "$files" -eq $EXPECTED ] || exit 1
304
305
- name: "Sign artifacts"
306
uses: sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0
0 commit comments