Preparing Einstein to 2025 #251
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security & quality code scanning (ubuntu) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get dependencies | |
run: sudo apt-get install -y libpulse-dev ninja-build libbsd-dev | |
- name: Get sources | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: cpp | |
config-file: ./.github/codeql/codeql-config.yml | |
- name: Compile Einstein | |
run: | | |
cmake -S . -B _Build_/Makefiles | |
cmake --build _Build_/Makefiles --target Einstein | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |