From 7ac2068879d2ebd2346cc9ee6ab2120e49e8d6a1 Mon Sep 17 00:00:00 2001 From: Robert Scheck Date: Sat, 5 Nov 2022 00:02:27 +0100 Subject: [PATCH] Add CodeQL analysis (#76) LGTM.com will be shut down in December 2022 and recommend to use GitHub code scanning instead. See also: https://github.blog/2022-08-15-the-next-step-for-lgtm-com-github-code-scanning/ --- .github/workflows/codeql-analysis.yml | 38 +++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..640e623 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,38 @@ +name: CodeQL analysis + +on: + push: + pull_request: + schedule: + # build the main branch every Tuesday morning + - cron: '15 6 * * 2' + workflow_dispatch: + +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 + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + - name: Build Application using script + run: | + ./bootstrap + ./configure + make + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{matrix.language}}"