Scans #272
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
# Scan the code for various flaws. See each of the scans for details. | |
name: Scans | |
on: | |
workflow_dispatch: | |
schedule: | |
# run this job at 00:00 UTC every day | |
- cron: '0 0 * * *' | |
jobs: | |
call-bandit: | |
uses: ./.github/workflows/scan_bandit.yml | |
name: Bandit | |
call-codeql: | |
uses: ./.github/workflows/scan_codeql.yml | |
name: CodeQL | |
call-coverity: | |
uses: ./.github/workflows/scan_coverity.yml | |
secrets: | |
COVERITY_SCAN_NOTIFICATION_EMAIL: ${{ secrets.COVERITY_SCAN_NOTIFICATION_EMAIL }} | |
COVERITY_SCAN_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | |
name: Coverity | |
call-coverage: | |
uses: ./.github/workflows/scan_coverage.yml | |
name: Coverage | |
call-documentation: | |
uses: ./.github/workflows/scan_documentation.yml | |
name: Documentation | |
call-ubsan: | |
uses: ./.github/workflows/scan_ubsan.yml | |
name: UBSAN | |
call-stack-usage: | |
uses: ./.github/workflows/scan_stack_usage.yml | |
name: Stack usage | |
call-log-calls: | |
uses: ./.github/workflows/scan_log_calls.yml | |
name: Log calls |