Skip to content

Commit 63f3f0d

Browse files
authored
Make CI depend on analyse-code step (#3265)
CI should not be able to pass if the analyse code step is failing.
1 parent 6afee98 commit 63f3f0d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ jobs:
9797
all-jobs-complete:
9898
name: All jobs complete
9999
runs-on: ubuntu-latest
100-
needs: lint-build-test
100+
needs:
101+
- analyse-code
102+
- lint-build-test
101103
outputs:
102104
passed: ${{ steps.set-output.outputs.passed }}
103105
steps:

0 commit comments

Comments
 (0)