Skip to content

Commit

Permalink
CI: add Coverity workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lzaoral committed Feb 2, 2023
1 parent 16818ee commit 0137f1b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Coverity

on:
push:
branches: [main]

jobs:
coverity:
if: github.repository == 'csutils/csmock'
name: Coverity Scan
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- 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
command: --no-command --fs-capture-search ./py ./scripts

0 comments on commit 0137f1b

Please sign in to comment.