Skip to content

Moved LevelConstants to the C++ project. #526

Moved LevelConstants to the C++ project.

Moved LevelConstants to the C++ project. #526

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
pull_request:
schedule:
- cron: 0 0 * * 1
jobs:
CodeQL:
runs-on: ubuntu-latest
permissions:
security-events: write
strategy:
matrix:
language: [python, cpp]
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.1
- name: Initialize CodeQL
uses: github/codeql-action/init@v2.22.8
with:
languages: ${{ matrix.language }}
setup-python-dependencies: false
- name: Autobuild C++
if: matrix.language == 'cpp'
uses: github/codeql-action/autobuild@v2.22.9
with:
working-directory: ${{ github.workspace }}/src/hades_extensions
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v2.22.9
with:
category: /language:${{ matrix.language }}