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 d3e9896 commit 9b01750Copy full SHA for 9b01750
‎.github/workflows/build.yml
@@ -96,7 +96,12 @@ jobs:
96
publish-on-testpypi:
97
name: 📦 Publish on TestPyPI
98
if: github.event_name == 'release'
99
- needs: build
+ needs:
100
+ - build
101
+ - lint-black
102
+ - lint-prettier
103
+ - lint-isort
104
+ - lint-flake8
105
runs-on: ubuntu-latest
106
steps:
107
- name: ⬇ Download build result
@@ -114,7 +119,7 @@ jobs:
114
119
publish-on-pypi:
115
120
name: 📦 Publish tagged releases to PyPI
116
121
117
122
+ needs: publish-on-testpypi
118
123
124
125
0 commit comments