Merge pull request #2487 from s-ayush2903/ci/s-ayush2903/#2486-upload-reports-to-gh-actions

CI: Upload Reports to github actions
This commit is contained in:
Seán Mac Gillicuddy 2020-11-13 10:43:01 +00:00 committed by GitHub
commit 0a3acb04d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

@ -45,3 +45,10 @@ jobs:
- name: Upload coverage to Codecov
run: |
bash <(curl -s https://codecov.io/bash)
- name: Upload Coverage to GH-Actions
uses: actions/upload-artifact@v2.2.0
with:
name: Tests Coverage Report
path: |
**/reports/

View File

@ -16,6 +16,14 @@ jobs:
- name: Static Analysis
run: ./gradlew ktlintCheck detekt app:lintDebug custom:lintCustomexampleDebug
- name: Upload Static Analysis Report
uses: actions/upload-artifact@v2.2.0
with:
name: Static Analysis Report
path: |
**/reports/
build:
runs-on: ubuntu-latest