Skip to content

Commit 4bba5f6

Browse files
authored
Merge pull request #873 from SeeSharpSoft/main
Release 4.0.0
2 parents 079c974 + cca52b4 commit 4bba5f6

File tree

221 files changed

+3738
-532
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+3738
-532
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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: Coveralls Report
5+
6+
on:
7+
push:
8+
branches: [ main ]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up JDK 17
18+
uses: actions/setup-java@v2
19+
with:
20+
java-version: '17'
21+
distribution: 'adopt'
22+
- name: Grant execute permission for gradlew
23+
run: chmod +x gradlew
24+
- name: Build with Gradle
25+
env:
26+
IDEA_VERSION: 2024.1
27+
run: xvfb-run ./gradlew test
28+
- name: Coveralls
29+
uses: coverallsapp/[email protected]
30+
with:
31+
github-token: ${{ secrets.COVERALLS_TOKEN }}

.github/workflows/CronEAP.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
run: chmod +x gradlew
2424
- name: Build with Gradle
2525
env:
26-
IDEA_VERSION: LATEST-EAP-SNAPSHOT
26+
IDEA_PLATFORM: IC
27+
IDEA_VERSION: 2024.1
2728
IDEA_SOURCES: false
28-
run: xvfb-run ./gradlew test
29+
run: xvfb-run ./gradlew verifyPlugin

.github/workflows/PublishStable.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
include:
19-
- ideaVersion: 2022.2.1
20-
- ideaVersion: 2022.3.1
21-
- ideaVersion: 2023.1.1
22-
- ideaVersion: 2023.2.1
23-
- ideaVersion: 2023.3.1
24-
- ideaVersion: 2024.1.1
25-
- ideaVersion: LATEST-EAP-SNAPSHOT
19+
- ideaVersion: 2024.1
2620

2721
steps:
2822
- uses: actions/checkout@v2

.github/workflows/PullRequest.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,10 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
include:
19-
- ideaVersion: 2022.2.3
20-
ideaType: PY
21-
- ideaVersion: 2023.3.1
22-
ideaType: PS
19+
- ideaVersion: 2024.1.1
20+
ideaPlatform: IC
2321
- ideaVersion: 2024.2.1
24-
ideaType: IC
22+
ideaPlatform: PY
2523

2624
steps:
2725
- uses: actions/checkout@v2
@@ -35,6 +33,6 @@ jobs:
3533
- name: Build with Gradle
3634
env:
3735
IDEA_VERSION: ${{ matrix.ideaVersion }}
38-
IDEA_TYPE: ${{ matrix.ideaType }}
36+
IDEA_PLATFORM: ${{ matrix.ideaPlatform }}
3937
IDEA_SOURCES: false
4038
run: xvfb-run ./gradlew test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
hs_err_pid*
2323

2424
*.iml
25+
.intellijPlatform
2526
.idea/
2627
.gradle/
2728
out/

0 commit comments

Comments
 (0)