From 186edd298b21b89981a7567809a97bd999a974c7 Mon Sep 17 00:00:00 2001 From: Peter Krusche Date: Mon, 15 Apr 2024 22:23:42 +0200 Subject: [PATCH] add check step --- .github/workflows/build-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 673855c..324137e 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -18,11 +18,14 @@ jobs: - name: Install dependencies run: | pip install --upgrade pip - pip install build==0.7.0 pep517 setuptools wheel + pip install build==0.7.0 pep517 setuptools wheel twine - name: Build PyPI release run: python -m build + - name: Check PyPI release + run: python -m twine check dist/* + - name: Upload artifact uses: actions/upload-artifact@v2 with: