Skip to content

Commit 327675c

Browse files
author
Mihai-Cristian Condrea
committed
chore(ci): Update GitHub Actions and build command
Updates the `actions/checkout` and `actions/setup-java` to v5. The Gradle build command is also updated to include `--stacktrace` and `--info` flags for more detailed build and test reporting.
1 parent 6f39181 commit 327675c

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/android.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,20 @@ on:
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
1312

1413
steps:
15-
- uses: actions/checkout@v3
16-
- name: set up JDK 21
17-
uses: actions/setup-java@v3
14+
- uses: actions/checkout@v5
15+
16+
- name: Set up JDK 21
17+
uses: actions/setup-java@v5
1818
with:
1919
java-version: '21'
2020
distribution: 'temurin'
2121
cache: gradle
2222

2323
- name: Grant execute permission for gradlew
2424
run: chmod +x gradlew
25-
- name: Build with Gradle
26-
run: ./gradlew build
25+
26+
- name: Build & run all tests
27+
run: ./gradlew build --stacktrace --info

0 commit comments

Comments
 (0)