Prepare v0.6.4-SNAPSHOT; update plugin to 0.6.3 (#158) #255
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 Run Tests" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [8, 11, 17] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Java ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: ${{ matrix.java }} | |
cache: gradle | |
- name: Build and Test | |
run: ./gradlew build |