Skip to content

CodeQL

CodeQL #1

Workflow file for this run

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