From f90baece4685db7a43984dd05b57121f16ed1b6d Mon Sep 17 00:00:00 2001 From: Tomek Mrugalski Date: Thu, 9 Mar 2023 14:51:56 +0100 Subject: [PATCH] [#2760] Added compilation back, python checks enabled --- .github/workflows/codeql.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 373dfa5e2b..3331790dbd 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -21,9 +21,7 @@ jobs: strategy: fail-fast: false matrix: - language: [ 'cpp' ] - # language: ['cpp', 'python'] - # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + language: [ 'cpp', 'python' ] steps: - name: Checkout repository @@ -54,8 +52,10 @@ jobs: - name: Build Kea run: | autoreconf -i - ./configure - # make -j2 + # We want to enable shell, so python files are generated. And CodeQL can + # check them. + ./configure --enable-shell + make -j2 # ℹ️ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun -- 2.47.2