From a559aeb6ac6293bad8d3b8e3c14e4172ca4d85cb Mon Sep 17 00:00:00 2001 From: Paul Schwarzenberger Date: Thu, 21 Mar 2024 10:38:43 +0000 Subject: [PATCH] CodeQL --- .github/workflows/codeql.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 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 00000000..860f23d8 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,33 @@ +name: "CodeQL" + +on: + workflow_dispatch: + push: + paths: + - "**/*.py" + - "**/*.txt" + - ".github/workflows/codeql.yml" + schedule: + - cron: '24 0 * * 4' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + timeout-minutes: 360 + permissions: + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'python' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} \ No newline at end of file