Skip to content

CodeQL Linux

CodeQL Linux #114

name: "CodeQL Linux"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '27 9 * * 0'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'c-cpp' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- if: matrix.language == 'c-cpp'
name: Build C
run: |
make -C src -j `nproc`
make -C src -j `nproc` test
make -C src -j `nproc` fuzzer
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"