'#2486 Upload Reports to github actions

This commit is contained in:
s-ayush2903 2020-11-10 23:43:26 +05:30
parent 2c53eaf394
commit 21d9d6de35
No known key found for this signature in database
GPG Key ID: B4341DD08B2371CB
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