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 7023f91 commit d0f00a9Copy full SHA for d0f00a9
.github/workflows/tox.yml
@@ -223,3 +223,18 @@ jobs:
223
with:
224
path: .tox/junit.*.xml
225
if: always()
226
+
227
+ check: # This job does nothing and is only used for the branch protection
228
+ if: always()
229
230
+ needs:
231
+ - linters
232
+ - unit
233
234
+ runs-on: Ubuntu-latest
235
236
+ steps:
237
+ - name: Decide whether the needed jobs succeeded or failed
238
+ uses: re-actors/alls-green@release/v1
239
+ with:
240
+ jobs: ${{ toJSON(needs) }}
0 commit comments