Add Java 11 #1
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 and Test Plugin Template | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
#- macOS-latest | |
#- windows-latest | |
java: | |
- 11 | |
- 17 | |
- 21 | |
name: Build and Test Plugin Template | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: temurin | |
- name: Build and Run Tests | |
run: | | |
./gradlew build test integTest check | |
./gradlew publishPluginZipPublicationToZipStagingRepository | |
#- name: Update version to the next development iteration | |
# if: matrix.os != 'windows-latest' | |
# run: | | |
# # Task to auto update version to the next development iteration | |
# ./gradlew updateVersion -DnewVersion=2.1.0-SNAPSHOT |