From fff6d2c5b9448580d5fb1b295eced78a1b21d3c1 Mon Sep 17 00:00:00 2001 From: Taylor Jackle Spriggs <74561858+tjs-intel@users.noreply.github.com> Date: Wed, 8 May 2024 17:10:02 -0600 Subject: [PATCH] Coverity scan (#454) * coverity scan workflow * on push to main --- .github/workflows/coverity.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/coverity.yml diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml new file mode 100644 index 00000000..19cb22d4 --- /dev/null +++ b/.github/workflows/coverity.yml @@ -0,0 +1,18 @@ +name: Coverity Scan + +on: + push: + branches: [main] +jobs: + coverity: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: git ls-files > git-ls-files.lst + - uses: vapier/coverity-scan-action@v1 + with: + project: sigopt-python + email: ${{ secrets.COVERITY_SCAN_EMAIL }} + token: ${{ secrets.COVERITY_SCAN_TOKEN }} + build_language: other + command: "--no-command --fs-capture-list git-ls-files.lst"