Skip to content

Commit

Permalink
run Coverity checks using GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
florolf committed Sep 9, 2024
1 parent abb1094 commit d7a088a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Coverity Scan
on:
workflow_dispatch:
push:
branches:
- master

jobs:
coverity:
runs-on: ubuntu-24.04
steps:
- run: sudo apt-get update -qq

- run: sudo apt-get install -y
libssl-dev
libcurl4-openssl-dev

- uses: actions/checkout@v4

- run: cmake
-DBUILD_TESTING=Off
-B ${{github.workspace}}/build

- uses: vapier/coverity-scan-action@v1
with:
project: casync-nano
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
command: make -C ${{github.workspace}}/build

0 comments on commit d7a088a

Please sign in to comment.