Yogh333 241113/update doc #788
Workflow file for this run
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: "CodeQL" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
paths-ignore: | |
- '.github/workflows/*.yml' | |
- 'tests/*' | |
jobs: | |
analyse: | |
name: Analyse | |
strategy: | |
matrix: | |
sdk: [ "$NANOS_SDK", "$NANOX_SDK", "$NANOSP_SDK" ] | |
#'cpp' covers C and C++ | |
language: [ 'cpp' ] | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
queries: security-and-quality | |
# CodeQL will create the database during the compilation | |
- name: Build | |
run: | | |
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python make BOLOS_SDK=${{ matrix.sdk }} | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |