Add CodeQL scanning.

This commit is contained in:
Michael R Sweet 2022-12-09 11:09:34 -05:00
parent 599640eda1
commit c7101ae9dd
No known key found for this signature in database
GPG Key ID: 999559A027815955
2 changed files with 57 additions and 0 deletions

7
.github/codeql.yml vendored Normal file
View File

@ -0,0 +1,7 @@
paths-ignore:
- 'test*.c'
query-filters:
- exclude:
id: cpp/commented-out-code

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

@ -0,0 +1,50 @@
name: "CodeQL"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "46 3 * * 0"
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ cpp ]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Update build environment
run: sudo apt-get update --fix-missing -y
- name: Install prerequisites
run: sudo apt-get install -y zlib1g-dev
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql.yml
queries: +security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"