diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-07-16 16:36:24 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-07-16 16:36:24 +0200 |
commit | 8489b8e32a9758b6a24ae6df29c06ff6a5d34e1e (patch) | |
tree | 26a944fef2e7f70ec221ced95d26f3f083a775c1 | |
parent | 2d010b22e644b672fe4790df8c89fde648eafe22 (diff) |
CodeQL workflow
-rw-r--r-- | .github/workflows/codeql.yml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..3336216 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,43 @@ +name: "CodeQL" + +on: + push: + branches: ["master"] + pull_request: + # The branches below must be a subset of the branches above + branches: ["master"] + schedule: + - cron: '29 1 * * 3' + +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@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + queries: security-extended,security-and-quality + + - run: | + make + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{matrix.language}}" |