Skip to content

Commit b7f6a53

Browse files
authored
build: add latest IJ workflow (#108)
Signed-off-by: Jeff MAURY <[email protected]>
1 parent c0c9191 commit b7f6a53

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/IJ-latest.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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/

0 commit comments

Comments
 (0)