Skip to content

Commit 03eae7b

Browse files
committed
lint
1 parent bdabded commit 03eae7b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

template/.github/workflows/ci.yaml.jinja

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)