- Notifications
You must be signed in to change notification settings - Fork619
CodeQL#5775
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
| name:"CodeQL" | |
| on: | |
| push: | |
| branches:["master"] | |
| schedule: | |
| # runs every day at 4:23 AM UTC | |
| -cron:"23 4 * * *" | |
| permissions: | |
| contents:read | |
| jobs: | |
| codeql_cpp: | |
| name:C++ | |
| runs-on:ubuntu-24.04 | |
| permissions: | |
| actions:read | |
| contents:read | |
| security-events:write | |
| steps: | |
| -name:Checkout repository | |
| uses:actions/checkout@v4 | |
| -name:Read Repository Configuration | |
| uses:./.github/actions/read-repo-config | |
| -name:Setup Build Agent | |
| uses:./.github/actions/setup-build-agent | |
| with: | |
| target:codeql | |
| cache-key:linux-gcc-x86_64-codeql | |
| -name:Initialize CodeQL | |
| uses:github/codeql-action/init@v3 | |
| with: | |
| languages:cpp | |
| config-file:./src/configs/codeql.yml | |
| -name:Build Library | |
| run:./src/scripts/ci_build.py --compiler-cache=none codeql | |
| -name:Perform CodeQL Analysis | |
| uses:github/codeql-action/analyze@v3 | |
| with: | |
| category:cpp | |
| codeql_py: | |
| name:Python | |
| runs-on:ubuntu-24.04 | |
| permissions: | |
| actions:read | |
| contents:read | |
| security-events:write | |
| steps: | |
| -name:Checkout repository | |
| uses:actions/checkout@v4 | |
| -name:Initialize CodeQL | |
| uses:github/codeql-action/init@v3 | |
| with: | |
| languages:python | |
| config-file:./src/configs/codeql.yml | |
| -name:Perform CodeQL Analysis | |
| uses:github/codeql-action/analyze@v3 | |
| with: | |
| category:python |