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:
authorStefan Niedermann <info@niedermann.it>2020-06-23 11:03:47 +0300
committerNiedermann IT-Dienstleistungen <stefan-niedermann@users.noreply.github.com>2020-06-23 11:29:42 +0300
commit4033dd7f178f438062b5b23bf4b854c679fadb5d (patch)
tree0e5c2d46eceb35cb10bf3211cabdf10f20ff6e94 /.github
parent117687e3aaea5ff803df4bc4313412fb45459a4d (diff)
Simplify CI job
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