Coverity Scan develop branch on a weekly basis #136
This file contains 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
name: Coverity Scan develop branch on a weekly basis | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "7 3 * * 0" | |
jobs: | |
coverity: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: develop | |
- name: Dependencies | |
run: sudo apt-get install -y libcjson-dev libsqlite3-dev libssl-dev uthash-dev | |
- uses: vapier/coverity-scan-action@v1 | |
with: | |
build_language: 'cxx' | |
project: "eclipse/mosquitto" | |
token: ${{ secrets.COVERITY_SCAN_TOKEN }} | |
email: ${{ secrets.COVERITY_SCAN_EMAIL }} | |
command: "make binary" | |