From ef06b31f276aca3174b72604a4c83dd0b1dc1dc9 Mon Sep 17 00:00:00 2001 From: Klaus Ethgen Date: Wed, 2 Dec 2020 21:01:27 +0100 Subject: [PATCH] Try to setup security scan --- .github/workflows/codeql-analysis.yml | 36 +++++++++++++++++++++++++++ 1 file changed, 36 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 00000000..724fed53 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,36 @@ +name: "CodeQL" + +on: + push: + branches: [master, stable/1.6] + pull_request: + # The branches below must be a subset of the branches above + branches: [master] + schedule: + - cron: '18 9 * * 0' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + language: ['cpp'] + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: ${{ matrix.language }} + + - name: Autobuild + uses: github/codeql-action/autobuild@v1 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 -- 2.20.1