Skip to content

DRAFT 652 - test CodeQL workflow #1

DRAFT 652 - test CodeQL workflow

DRAFT 652 - test CodeQL workflow #1

Workflow file for this run

# CodeQL workflow for GitHub code scanning.
name: CodeQL
on: [ push, pull_request ]
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
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
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 }}"