File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will build a Java project with Gradle
2+ # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3+
4+ name : Latest IJ
5+
6+ on :
7+ schedule :
8+ - cron : " 0 0 * * *"
9+
10+ jobs :
11+
12+ build :
13+ runs-on : ubuntu-latest
14+
15+ steps :
16+ - uses : actions/checkout@v2
17+ - name : Set up JDK 17
18+ uses : actions/setup-java@v3
19+ with :
20+ java-version : 17
21+ distribution : ' temurin'
22+ cache : ' gradle'
23+ - name : Grant execute permission for gradlew
24+ run : chmod +x gradlew
25+ - name : Build with Gradle
26+ run : ./gradlew build --continue -PideaVersion=LATEST-EAP-SNAPSHOT
27+ - uses : actions/upload-artifact@v2
28+ if : always()
29+ with :
30+ name : test-reports
31+ path : |
32+ build/test-results/**/*.xml
33+ build/jacoco/
You can’t perform that action at this time.
0 commit comments