-
Notifications
You must be signed in to change notification settings - Fork 20
31 lines (26 loc) · 924 Bytes
/
coverity.yml
File metadata and controls
31 lines (26 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
name: Coverity
on:
push:
branches:
- coverity
- main
jobs:
coverity:
if: github.repository == 'csutils/csmock'
name: Coverity Scan
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Coverity scan
uses: vapier/coverity-scan-action@v1
with:
build_language: other # other is for Python, etc...
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
project: csutils/csmock
# The GitHub Action this workflow is based on uses `cov-build`, which
# does not support buildless capture any more. This way we make it
# use `coverity capture` instead of `cov-build`.
command: --ident; set -x; coverity --ticker-mode=no-spin capture --dir=cov-int --file-include-regex="csmock|scripts" --language=python