Skip to content

Change: Split target alive_tests into sub-elements #3385

Change: Split target alive_tests into sub-elements

Change: Split target alive_tests into sub-elements #3385

name: "CodeQL"
on:
push:
branches: [main, stable, oldstable]
pull_request:
branches: [main, stable, oldstable]
paths-ignore:
- "**/*.md"
- "**/*.txt"
schedule:
- cron: "30 5 * * 0" # 5:30h on Sundays
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
container: ${{ vars.SELF_HOSTED_REGISTRY || 'registry.community.greenbone.net' }}/community/gvm-libs:stable
strategy:
fail-fast: false
matrix:
language: ["c"]
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install build dependencies
run: sh .github/install-dependencies.sh .github/build-dependencies.list
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
# build between init and analyze ...
- name: Configure and compile gvmd
run: |
mkdir build
cd build/
cmake -DCMAKE_BUILD_TYPE=Debug ..
make install
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4