Skip to content

[projmgr] Relax project provided connections validation #282

[projmgr] Relax project provided connections validation

[projmgr] Relax project provided connections validation #282

name: "CodeQL"
on:
workflow_dispatch:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/codeql-analysis.yml'
- '**/*.c'
- '**/*.cpp'
- '**/*.h'
- '**/*.in'
- '**/CMakeLists.txt'
- '!**/*.md'
push:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Install packages
run: |
sudo apt-get install ninja-build
- name: Checkout repository
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
submodules: true
- name: Initialize CodeQL
uses: github/codeql-action/init@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5
with:
languages: cpp
queries: security-and-quality
config-file: ./.github/codeql-config.yml
- name: Create build folder
run: mkdir build
- name: Build code for analysis
run: |
cmake -G Ninja ..
cmake --build .
working-directory: ./build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5