Skip to content

Commit 70ef438

Browse files
committed
updated workflows (IJ, IJ-latest)
Signed-off-by: Andre Dietisheim <[email protected]>
1 parent 267c680 commit 70ef438

File tree

2 files changed

+35
-2
lines changed

2 files changed

+35
-2
lines changed

Diff for: .github/workflows/IJ-latest.yml

+33
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/

Diff for: .github/workflows/IJ.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
IJ: [IC-2021.1, IC-2021.2, IC-2021.3, IC-2022.1, IC-2022.2, IC-2022.3]
17+
IJ: [IC-2021.1, IC-2021.2, IC-2021.3, IC-2022.1, IC-2022.2, IC-2022.3, IC-2023.1]
1818

1919
steps:
2020
- uses: actions/checkout@v2
@@ -50,4 +50,4 @@ jobs:
5050
if: always()
5151
with:
5252
name: verifier-report
53-
path: build/reports/pluginVerifier
53+
path: build/reports/pluginVerifier

0 commit comments

Comments
 (0)