aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas.ru@gmail.com>2023-07-03 15:21:44 +0200
committerGitHub <noreply@github.com>2023-07-03 15:21:44 +0200
commit6f7f5a163d76d05abe0708cb18bfb24a873af72e (patch)
treeb329c488ec5ea3fa61f140020917e9ed849a608b /.github
parente07b6148fd5dde52a46dc0fdab3431e30ba079b7 (diff)
downloadbrotli-6f7f5a163d76d05abe0708cb18bfb24a873af72e.zip
brotli-6f7f5a163d76d05abe0708cb18bfb24a873af72e.tar.gz
brotli-6f7f5a163d76d05abe0708cb18bfb24a873af72e.tar.bz2
Improve CodeQL workflow (#1027)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index ca519e4..bd043c9 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -34,12 +34,15 @@ jobs:
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
+ config: |
+ paths-ignore:
+ - research
- if: matrix.language == 'cpp'
name: Build CPP
uses: github/codeql-action/autobuild@v2
- - if: matrix.language == 'java'
+ - if: matrix.language == 'cpp' || matrix.language == 'java'
name: Build Java
run: |
cd ${GITHUB_WORKSPACE}/java
@@ -49,9 +52,10 @@ jobs:
name: Build JS
uses: github/codeql-action/autobuild@v2
- - if: matrix.language == 'python'
+ - if: matrix.language == 'cpp' || matrix.language == 'python'
name: Build Python
- uses: github/codeql-action/autobuild@v2
+ run: |
+ python setup.py build_ext
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2