From a7e38908c71df6946a0c430c9b760b799f2a6243 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 29 Apr 2022 17:42:02 +0200 Subject: [PATCH] created basic codeql workflow --- .github/workflows/codeql.yml | 37 ++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..9dcd653 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,37 @@ +name: "CodeQL" + +on: + push: + branches: [ stable ] + + schedule: + - cron: '19 6 * * 2' + +jobs: + analyze: + name: Analyze code + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'c' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + - name: CodeQL Analysis + uses: github/codeql-action/analyze@v2 \ No newline at end of file