Skip to content

Commit

Permalink
Switch back to custom CodeQL configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobiasd committed Jun 22, 2024
1 parent d38e5b4 commit cc7c01e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: codeql

on:
push:
pull_request:
schedule:
- cron: '0 5 * * 3'

jobs:
codeql:
runs-on: ubuntu-latest
name: "CodeQL"
env:
CC: gcc
CXX: g++
steps:
- name: Checkout
uses: actions/checkout@main
- name: CodeQL Initialization
uses: github/codeql-action/init@v3
with:
languages: cpp
queries: +security-and-quality
- name: Build
shell: bash
run: script/ci.sh run_build
- name: CodeQL Analysis
uses: github/codeql-action/analyze@v3

0 comments on commit cc7c01e

Please sign in to comment.