File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
template/.github/workflows Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,7 @@ jobs:
157157 statuses: write # needed for updating status on Dependabot PRs
158158 needs:
159159 - get-values
160+ - lint
160161 - test{% endraw %}{% if create_docs %}
161162 - build-docs{% endif %}{% if is_frozen_executable %}
162163 - executable{% endif %}{% raw %}
@@ -167,7 +168,8 @@ jobs:
167168 run: |
168169 failure_pattern="^(failure|cancelled)$"
169170
170- if [[ "${{ needs.get-values.result }}" =~ $failure_pattern ]] ||{% endraw %}{% if create_docs %}{% raw %}
171+ if [[ "${{ needs.get-values.result }}" =~ $failure_pattern ]] ||
172+ [[ "${{ needs.lint.result }}" =~ $failure_pattern ]] ||{% endraw %}{% if create_docs %}{% raw %}
171173 [[ "${{ needs.build-docs.result }}" =~ $failure_pattern ]] ||{% endraw %}{% endif %}{% raw %}{% endraw %}{% if is_frozen_executable %}{% raw %}
172174 [[ "${{ needs.executable.result }}" =~ $failure_pattern ]] ||{% endraw %}{% endif %}{% raw %}
173175 [[ "${{ needs.test.result }}" =~ $failure_pattern ]]; then
You can’t perform that action at this time.
0 commit comments