Skip to content

Merge pull request #271 from cyanpotion/dependabot/maven/develop/juni… #541

Merge pull request #271 from cyanpotion/dependabot/maven/develop/juni…

Merge pull request #271 from cyanpotion/dependabot/maven/develop/juni… #541

Workflow file for this run

name: Java CI
on: [ push ]
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ ubuntu-latest , windows-latest , macos-latest ]
java: [ 8, 11, 14 ]
experimental: [ false ]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: adopt
- name: Build with mvnw
run: |
chmod 777 ./mvnw
./mvnw install -Penforce