aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorflow <flowlnlnln@gmail.com>2022-10-08 15:04:23 -0300
committerGitHub <noreply@github.com>2022-10-08 15:04:23 -0300
commite436f471a074401be3a48f19eff577c040e9b192 (patch)
tree367b33ef9fce0c2bbf9a93c1d074b966d9374dc3 /.github/workflows/build.yml
parent28f84902f6478438f246bb3be3acea3856c437e5 (diff)
parent80e9eed35a537482897555eac641dad12b921064 (diff)
downloadPrismLauncher-e436f471a074401be3a48f19eff577c040e9b192.tar.gz
PrismLauncher-e436f471a074401be3a48f19eff577c040e9b192.tar.bz2
PrismLauncher-e436f471a074401be3a48f19eff577c040e9b192.zip
Merge pull request #1177 from DioEgizio/codeql
bye LGTM :wave:
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ae8947ab..6a9f393c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -64,6 +64,14 @@ jobs:
with:
submodules: 'true'
+ - name: Initialize CodeQL
+ if: runner.os == 'Linux' && matrix.qt_ver == 6
+ uses: github/codeql-action/init@v2
+ with:
+ config-file: ./.github/codeql/codeql-config.yml
+ queries: security-and-quality
+ languages: cpp, java
+
- name: 'Setup MSYS2'
if: runner.os == 'Windows'
uses: msys2/setup-msys2@v2
@@ -210,6 +218,14 @@ jobs:
ctest --test-dir build --output-on-failure
##
+ # CODE SCAN
+ ##
+
+ - name: Perform CodeQL Analysis
+ if: runner.os == 'Linux' && matrix.qt_ver == 6
+ uses: github/codeql-action/analyze@v2
+
+ ##
# PACKAGE BUILDS
##