Skip to content

Change: boreas. Use sequence number 1. #966

Change: boreas. Use sequence number 1.

Change: boreas. Use sequence number 1. #966

name: "CodeQL"
on:
push:
branches: [ main, oldstable, stable ]
pull_request:
branches: [ main, oldstable, stable ]
paths-ignore:
- '**/*.md'
- '**/*.txt'
schedule:
- cron: '30 5 * * 0' # 5:30h on Sundays
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
container: greenbone/gvm-libs-build:unstable
strategy:
fail-fast: false
matrix:
language: [ 'c' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# build between init and analyze ...
- name: Configure and Compile gvm-libs
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make install
working-directory: ${{ github.WORKSPACE }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3