CodeQL #1
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: | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: '0 6 * * 1' # weekly Monday 06:00 UTC | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/ten9876/aethersdr-ci:latest | |
| permissions: | |
| security-events: write | |
| strategy: | |
| matrix: | |
| language: [cpp] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Fix git ownership for container | |
| run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Configure | |
| run: cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo | |
| - name: Build | |
| run: cmake --build build -j$(nproc) | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |