Skip to content

Merge pull request #10 from Total-Random/dependabot/github_actions/ac… #23

Merge pull request #10 from Total-Random/dependabot/github_actions/ac…

Merge pull request #10 from Total-Random/dependabot/github_actions/ac… #23

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '34 16 * * 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 repository
uses: actions/checkout@v7
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Build
run: |
cmake -B build
cmake --build build --config Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"