File tree Expand file tree Collapse file tree 1 file changed +16
-14
lines changed
Expand file tree Collapse file tree 1 file changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -26,18 +26,20 @@ permissions:
2626jobs :
2727 build :
2828 runs-on : windows-latest
29+
2930 steps :
30- - uses : actions/checkout@v3
31- - name : Set up JDK 25
32- uses : actions/setup-java@v4
33- with :
34- java-version : ' 25'
35- distribution : ' temurin'
36- - name : Build with Gradle
37- uses : gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
38- with :
39- arguments : build
40- - name : Test with Gradle
41- uses : gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
42- with :
43- arguments : test
31+ - name : Checkout Code
32+ uses : actions/checkout@v4
33+
34+ - name : Set up JDK 25
35+ uses : actions/setup-java@v4
36+ with :
37+ java-version : ' 25'
38+ distribution : ' temurin'
39+ cache : ' gradle'
40+
41+ - name : Setup Gradle
42+ uses : gradle/actions/setup-gradle@v4
43+
44+ - name : Build and Test with Gradle
45+ run : ./gradlew build
You can’t perform that action at this time.
0 commit comments