removed obsolete registerBeforeCommitListener() #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 19 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 19 | |
- name: Build plugin | |
run: | | |
chmod +x gradlew | |
./gradlew check buildPlugin --info | |
- name: Build plugin with EAP | |
run: | | |
chmod +x gradlew | |
export IJ_VERSION=LATEST-EAP-SNAPSHOT | |
./gradlew check buildPlugin --info |