aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas.ru@gmail.com>2023-07-03 14:48:33 +0200
committerGitHub <noreply@github.com>2023-07-03 14:48:33 +0200
commite07b6148fd5dde52a46dc0fdab3431e30ba079b7 (patch)
tree380bdc68144389c40d26f40ba0fd8010dcdcab57 /.github
parentec107cf015139c791f79afac0f96c3a2c45e157f (diff)
downloadbrotli-e07b6148fd5dde52a46dc0fdab3431e30ba079b7.zip
brotli-e07b6148fd5dde52a46dc0fdab3431e30ba079b7.tar.gz
brotli-e07b6148fd5dde52a46dc0fdab3431e30ba079b7.tar.bz2
Add CodeQL workflow (#1026)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql.yml59
1 files changed, 59 insertions, 0 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
new file mode 100644
index 0000000..ca519e4
--- /dev/null
+++ b/.github/workflows/codeql.yml
@@ -0,0 +1,59 @@
+name: "CodeQL"
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ # The branches below must be a subset of the branches above
+ branches: [ "master" ]
+ schedule:
+ - cron: '18 15 * * 0'
+
+jobs:
+ analyze:
+ name: Analyze
+ runs-on: 'ubuntu-latest'
+ timeout-minutes: 360
+ permissions:
+ actions: read
+ contents: read
+ security-events: write
+
+ strategy:
+ fail-fast: false
+ matrix:
+ language: [ 'cpp', 'java', 'javascript', 'python' ]
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+
+ # Initializes the CodeQL tools for scanning.
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v2
+ with:
+ languages: ${{ matrix.language }}
+
+ - if: matrix.language == 'cpp'
+ name: Build CPP
+ uses: github/codeql-action/autobuild@v2
+
+ - if: matrix.language == 'java'
+ name: Build Java
+ run: |
+ cd ${GITHUB_WORKSPACE}/java
+ bazelisk build --spawn_strategy=local --nouse_action_cache -c opt ...:all
+
+ - if: matrix.language == 'javascript'
+ name: Build JS
+ uses: github/codeql-action/autobuild@v2
+
+ - if: matrix.language == 'python'
+ name: Build Python
+ uses: github/codeql-action/autobuild@v2
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v2
+ with:
+ category: "/language:${{matrix.language}}"