From 996aeeafb37b7f983a85c8bbbe239733f3c9e1cf Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Thu, 12 Aug 2021 13:55:42 +0200 Subject: [PATCH] ci: check that wheel metadata passes validation --- .github/workflows/wheels.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index bf9d8ba..2e5d6a9 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -48,6 +48,8 @@ jobs: run: python -m pip install cibuildwheel - name: Build wheels run: python -m cibuildwheel --output-dir dist + - name: Check wheels metadata + run: pipx run twine check dist/*.whl - uses: actions/upload-artifact@v2 with: path: dist/*.whl