Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/codeql.yml')
-rw-r--r--.github/workflows/codeql.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
new file mode 100644
index 000000000..e37a4d05f
--- /dev/null
+++ b/.github/workflows/codeql.yml
@@ -0,0 +1,25 @@
+name: CodeQL security scan
+
+on:
+ pull_request:
+ schedule:
+ - cron: '0 12 * * *'
+
+permissions:
+ contents: read
+
+jobs:
+ codeql:
+ name: CodeQL security scan
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v1
+ with:
+ languages: java
+ - name: Build debug APK
+ run: bash ./gradlew assembleDev --stacktrace
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v1 \ No newline at end of file