Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/CoverallsReport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Coveralls Report

on:
push:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
env:
IDEA_VERSION: 2024.1
run: xvfb-run ./gradlew test
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.COVERALLS_TOKEN }}
5 changes: 3 additions & 2 deletions .github/workflows/CronEAP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
env:
IDEA_VERSION: LATEST-EAP-SNAPSHOT
IDEA_PLATFORM: IC
IDEA_VERSION: 2024.1
IDEA_SOURCES: false
run: xvfb-run ./gradlew test
run: xvfb-run ./gradlew verifyPlugin
8 changes: 1 addition & 7 deletions .github/workflows/PublishStable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,7 @@ jobs:
fail-fast: false
matrix:
include:
- ideaVersion: 2022.2.1
- ideaVersion: 2022.3.1
- ideaVersion: 2023.1.1
- ideaVersion: 2023.2.1
- ideaVersion: 2023.3.1
- ideaVersion: 2024.1.1
- ideaVersion: LATEST-EAP-SNAPSHOT
- ideaVersion: 2024.1

steps:
- uses: actions/checkout@v2
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/PullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ jobs:
fail-fast: false
matrix:
include:
- ideaVersion: 2022.2.3
ideaType: PY
- ideaVersion: 2023.3.1
ideaType: PS
- ideaVersion: 2024.1.1
ideaPlatform: IC
- ideaVersion: 2024.2.1
ideaType: IC
ideaPlatform: PY

steps:
- uses: actions/checkout@v2
Expand All @@ -35,6 +33,6 @@ jobs:
- name: Build with Gradle
env:
IDEA_VERSION: ${{ matrix.ideaVersion }}
IDEA_TYPE: ${{ matrix.ideaType }}
IDEA_PLATFORM: ${{ matrix.ideaPlatform }}
IDEA_SOURCES: false
run: xvfb-run ./gradlew test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
hs_err_pid*

*.iml
.intellijPlatform
.idea/
.gradle/
out/
Expand Down
Loading
Loading