Update version to 0.0.19 #238
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: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: gradle/[email protected] | |
- name: set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Build with Gradle | |
run: ./gradlew buildPlugin test | |
- name: Archive plugin | |
uses: actions/[email protected] | |
with: | |
name: jgiven-intellij-plugin.zip | |
path: build/distributions/jgiven-intellij-plugin.zip |