Skip to content

Run workflows only for the main branch #670

Run workflows only for the main branch

Run workflows only for the main branch #670

name: "CodeQL"
on:
push:
branches:
- main
pull_request:
branches:
- main
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: ${{ vars.SELF_HOSTED_REGISTRY }}/community/gvm-libs:stable
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: C
# build between init and analyze ...
- name: Install build dependencies
run: sh .github/install-dependencies.sh .github/build-dependencies.list
- name: Configure and compile gsad
run: |
mkdir build
rm -rf .git
cd build/
cmake -DCMAKE_BUILD_TYPE=Debug ..
make install
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3