Skip to content

Commit 88d18f2

Browse files
committed
CI: specify the programming language for Coverity
Commit 2a9ee59 fixed the CI failure. Nevertheless the Coverity service still sends failure notifications about incomplete capture. Explicitly specify the programming language to eliminate these failure notifications. Related: #207
1 parent 2a9ee59 commit 88d18f2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/coverity.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Coverity
33

44
on:
55
push:
6-
branches: [main]
6+
branches:
7+
- coverity
8+
- main
79

810
jobs:
911
coverity:
@@ -26,4 +28,4 @@ jobs:
2628
# The GitHub Action this workflow is based on uses `cov-build`, which
2729
# does not support buildless capture any more. This way we make it
2830
# use `coverity capture` instead of `cov-build`.
29-
command: --ident; set -x; coverity --ticker-mode=no-spin capture --dir=cov-int --file-include-regex="csmock|scripts"
31+
command: --ident; set -x; coverity --ticker-mode=no-spin capture --dir=cov-int --file-include-regex="csmock|scripts" --language=python

0 commit comments

Comments
 (0)