This commit is contained in:
Miodrag Milanovic 2024-08-12 11:31:16 +02:00
parent 2188bc7122
commit 25e3bb089c
1 changed files with 30 additions and 0 deletions

30
.github/workflows/codeql.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: "CodeQL"
on:
workflow_dispatch:
push:
pull_request:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
steps:
- name: Install deps
run: sudo apt-get install libreadline-dev
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: cpp
queries: security-extended,security-and-quality
- name: Build
run: make abc -j6
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3