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 3bac60c commit 87d8bfeCopy full SHA for 87d8bfe
.github/workflows/build.yml
@@ -49,6 +49,17 @@ jobs:
49
twine check dist/*
50
pip install dist/*.whl
51
52
+ - name: Run Test
53
+ run: |
54
+ # cleanup (interferes with tests)
55
+ rm -rf bazel-*
56
+ # run tests
57
+ pytest -vv
58
+
59
+ - name: Debugging with tmate
60
+ if: failure()
61
+ uses: mxschmitt/action-tmate@v3.18
62
63
upload_to_pypi:
64
name: Upload to PyPI
65
runs-on: ubuntu-latest
@@ -74,14 +85,3 @@ jobs:
74
85
uses: pypa/gh-action-pypi-publish@release/v1.9
75
86
with:
76
87
packages_dir: wheels/
77
-
78
- - name: Run Test
79
- run: |
80
- # cleanup (interferes with tests)
81
- rm -rf bazel-*
82
- # run tests
83
- pytest -vv
84
- - name: Debugging with tmate
- if: failure()
- uses: mxschmitt/action-tmate@v3.18
0 commit comments