Skip to content

Fixed plugin crash and add libraries #19

Fixed plugin crash and add libraries

Fixed plugin crash and add libraries #19

Workflow file for this run

# 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: Pull Request Build
on:
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build --stacktrace
- name: Deploy to Jetbrain
run: ./gradlew data-weave-plugin:build --stacktrace --info
env:
IJ_TOKEN: ${{secrets.IJ_TOKEN}}