diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml new file mode 100644 index 0000000000..a2fdf5d811 --- /dev/null +++ b/.github/workflows/coverity.yml @@ -0,0 +1,18 @@ +# Your .github/workflows/coverity.yml file. +name: Coverity Scan + +# We only want to test official release code, not every pull request. +on: + push: + branches: [main] + +jobs: + coverity: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: vapier/coverity-scan-action@v1 + with: + email: ${{ secrets.COVERITY_SCAN_EMAIL }} + token: ${{ secrets.COVERITY_SCAN_TOKEN }} + build_language: "other"