OTWO-7396 Fix missing method for project comparison (#1814) #140
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # GitHub actions workflow. | |
| # https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
| # https://scan.coverity.com/projects/ohloh-ui | |
| name: Coverity Scan | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| coverity: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: vapier/coverity-scan-action@v1 | |
| with: | |
| project: 'Ohloh UI' | |
| build_language: 'other' | |
| command: '--no-command --fs-capture-search ${{ github.workspace }}' | |
| email: ${{ secrets.COVERITY_SCAN_EMAIL }} | |
| token: ${{ secrets.COVERITY_SCAN_TOKEN }} |