Skip to content

Commit 09af8d6

Browse files
authored
ci: add scan.coverity.com workflow (#1789)
1 parent 51ff523 commit 09af8d6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/coverity.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Your .github/workflows/coverity.yml file.
2+
name: Coverity Scan
3+
4+
# We only want to test official release code, not every pull request.
5+
on:
6+
push:
7+
branches: [main]
8+
9+
jobs:
10+
coverity:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: vapier/coverity-scan-action@v1
15+
with:
16+
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
17+
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
18+
build_language: "other"

0 commit comments

Comments
 (0)