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.
2 parents cb0abab + 965fd43 commit 7c5b0adCopy full SHA for 7c5b0ad
.github/workflows/python.yml
@@ -20,7 +20,9 @@ jobs:
20
- name: Test with pytest
21
run: |
22
nox -s smoke
23
-
+ - name: build package
24
+ run: |
25
+ nox -s build
26
- name: Publish package
27
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
28
uses: pypa/gh-action-pypi-publish@master
noxfile.py
@@ -16,3 +16,9 @@ def install(session):
16
def smoke(session):
17
session.install(*"pytest".split())
18
session.run(*"pytest --skiphdfs upath".split())
19
+
+@nox.session(python=False)
+def build(session):
+ session.install("flit")
+ session.run(*"flit build".split())
0 commit comments