Skip to content

Commit

Permalink
chore: simplified validation workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sbouchet authored Apr 4, 2023
1 parent 02ba90c commit 0df3951
Showing 1 changed file with 8 additions and 23 deletions.
31 changes: 8 additions & 23 deletions .github/workflows/IJ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,11 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew buildPlugin -PideaVersion=${{ matrix.IJ }}

verify:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew runPluginVerifier -PideaVersion=IC-2022.1
- name: Upload report
uses: actions/upload-artifact@v2
if: always()
with:
name: verifier-report
path: build/reports/pluginVerifier
- name: Verify with Gradle
run: ./gradlew runPluginVerifier -PideaVersion=${{ matrix.IJ }}
- name: Upload report
uses: actions/upload-artifact@v2
if: always()
with:
name: verifier-report
path: build/reports/pluginVerifier

0 comments on commit 0df3951

Please sign in to comment.