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

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2021-01-20 12:17:58 +0300
committerStefan Niedermann <info@niedermann.it>2021-01-20 12:17:58 +0300
commit5c7c174f30b1b794adc84fe343af983ff367e11d (patch)
tree4cefddd8e69ecb61c25a7961c72267f2eb2078b4 /.github
parent370806fabd11789ededb4dd3fdf6d3a1d7f55993 (diff)
Adjust CodeQL pipeline step
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/android.yml16
1 files changed, 10 insertions, 6 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
index 2a257d96..5d03ae20 100644
--- a/.github/workflows/android.yml
+++ b/.github/workflows/android.yml
@@ -33,18 +33,22 @@ jobs:
api-level: 29
script: ./gradlew connectAndroidTest --stacktrace
- codeql:
- name: CodeQL security scan
+ CodeQL Scan:
+ name: Analyze
runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ language: [ 'java', 'javascript' ]
steps:
- - name: Checkout
+ - name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
- languages: java
- - name: Build debug APK
- run: bash ./gradlew assembleDev --stacktrace
+ languages: ${{ matrix.language }}
+ - name: Autobuild
+ uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1