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')
-rw-r--r--.github/workflows/android.yml15
1 files changed, 3 insertions, 12 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
index cf9c7e940..4605a6415 100644
--- a/.github/workflows/android.yml
+++ b/.github/workflows/android.yml
@@ -34,26 +34,17 @@ jobs:
script: ./gradlew connectDevDebugAndroidTest --stacktrace
codeql:
- name: CodeQL-Build
+ name: CodeQL security scan
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- with:
- # We must fetch at least the immediate parents so that if this is
- # a pull request then we can checkout the head.
- fetch-depth: 2
-
- # If this run was triggered by a pull request event, then checkout
- # the head of the pull request instead of the merge commit.
- - run: git checkout HEAD^2
- if: ${{ github.event_name == 'pull_request' }}
-
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: java
- - run: bash ./gradlew assembleDev --stacktrace
+ - name: Build debug APK
+ run: bash ./gradlew assembleDev --stacktrace
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1