Skip to content

Commit

Permalink
Check dists in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Jul 18, 2024
1 parent cc92ea5 commit 3dae448
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,16 @@ jobs:
pip freeze
pip list
- name: debug distributions
run: |
python -c '
from importlib.metadata import distributions
for dist in distributions():
if dist.name is None:
print("ERROR: Found dist without name")
print(dist.metadata.json)
'
- name: ctapipe-info
if: contains(github.event.pull_request.labels.*.name, 'documentation-only') == false
run: |
Expand Down

0 comments on commit 3dae448

Please sign in to comment.