Skip to content

Add coverity

Add coverity #3

Workflow file for this run

---
name: Coverity Static Analysis
on: [pull_request]
jobs:
polaris-scan:
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Polaris PR Scan
if: ${{ github.event_name == 'pull_request' }}
uses: synopsys-sig/synopsys-action@v1.13.0
with:
polaris_server_url: ${{ vars.POLARIS_SERVER_URL }}
polaris_access_token: ${{ secrets.POLARIS_ACCESS_TOKEN }}
polaris_application_name: "ArcticDB"
polaris_assessment_types: "SAST"
polaris_prComment_enabled: true
polaris_waitForScan: true
github_token: ${{ secrets.GITHUB_TOKEN }}