Skip to content

Commit

Permalink
feat(ci): Upgrade to latest GitHub Actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
syxc committed Aug 25, 2024
1 parent e75fd1c commit 21ad68e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up JDK
uses: actions/setup-java@v4
Expand All @@ -36,8 +36,10 @@ jobs:
run: ./gradlew test

- name: Upload test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: "**/build/test-results/test"
path: |
**/build/test-results
**/build/reports/tests

0 comments on commit 21ad68e

Please sign in to comment.