Update instructions for adding junit-platform for gradle #92
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' | |
pull_request: | |
branches-ignore: | |
- 'release' | |
jobs: | |
supported-jdk: | |
name: ${{ matrix.title }} | |
continue-on-error: false | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- title: "JDK 8" | |
java: 8 | |
- title: "JDK 11" | |
java: 11 | |
- title: "JDK 16" | |
java: "16-ea" | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout from Git' | |
uses: actions/checkout@v3 | |
- name: 'Set up JDK ${{ matrix.java }}' | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: adopt | |
- name: 'Display JDK version' | |
run: java -version | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-maven- | |
- name: 'Test' | |
run: mvn -B verify |