Skip to content

Commit

Permalink
ci: save reports as artifacts (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mercy811 authored Jan 2, 2024
1 parent 0315e8e commit 2df8267
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/pull-request-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,15 @@ jobs:
run: ./gradlew testDebugUnitTest
- name: Lint
run: ./gradlew ktlintCheck
- name: Upload build results
if: always()
uses: actions/upload-artifact@v2
with:
# artifacts name
name: build-results
# copy reports of all packages
path: '**/build/reports/**'
# artifact will expire in 7 days.
retention-days: 7


0 comments on commit 2df8267

Please sign in to comment.