Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/pull-request-app-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
profile: Nexus 6
script: ./gradlew connectedCheck
- name: "Archive Instrumented Tests Results"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ always() }}
with:
name: "instrumented-tests-results"
Expand All @@ -88,7 +88,7 @@ jobs:
working-directory: ${{ inputs.app_relative_path }}
run: ./gradlew test
- name: "Android Unit Tests Report"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ always() }}
with:
name: "unit-tests-results"
Expand All @@ -114,7 +114,7 @@ jobs:
working-directory: ${{ inputs.app_relative_path }}
run: ./gradlew lint
- name: "Archive Lint Test Results"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ always() }}
with:
name: "lint-results"
Expand All @@ -140,7 +140,7 @@ jobs:
working-directory: ${{ inputs.app_relative_path }}
run: ./gradlew ktlintCheck
- name: "Archive Lint Test Results"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ always() }}
with:
name: "kotlin-lint-results"
Expand Down
Loading