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 7b5a1a1 commit 1a006fcCopy full SHA for 1a006fc
.github/workflows/build.yml
@@ -18,10 +18,13 @@ jobs:
18
python-version: "3.10"
19
- name: 🏗 Install build dependencies
20
run: >-
21
- python -m pip install wheel --user
+ python -m pip install wheel build twine --user
22
- name: 🔨 Build a binary wheel and a source tarball
23
24
- python setup.py sdist bdist_wheel
+ python -m build
25
+ - name: 🧪 Check that twine is happy with it
26
+ run: >-
27
+ twine check --strict dist/*
28
- name: ⬆ Upload build result
29
uses: actions/upload-artifact@v4
30
with:
0 commit comments