Skip to content

Commit

Permalink
Create coverity.yml
Browse files Browse the repository at this point in the history
Signed-off-by: John Andersen <[email protected]>
  • Loading branch information
pdxjohnny authored Nov 7, 2023
1 parent 215777b commit d1cd06a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Your .github/workflows/coverity.yml file.
name: Coverity Scan

# We only want to test official release code, not every pull request.
on:
push:
branches:
- '**'

permissions:
contents: read

jobs:
coverity:
runs-on: ubuntu-22.04
steps:
- uses: vapier/coverity-scan-action@cae3c096a2eb21c431961a49375ac17aea2670ce # v1.7.0
with:
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
build_language: 'other'
command: '--no-command --fs-capture-search ./ --fs-capture-search-exclude-regex /cov-analysis/.*

0 comments on commit d1cd06a

Please sign in to comment.