2022-03-01 13:31:37 -08:00
|
|
|
name: Test Java 17
|
2022-03-01 13:12:45 -08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-09-11 05:42:50 -07:00
|
|
|
- uses: actions/checkout@v4
|
2022-03-01 13:31:37 -08:00
|
|
|
- name: Set up JDK 17
|
2023-12-04 05:08:31 -08:00
|
|
|
uses: actions/setup-java@v4
|
2022-03-01 13:12:45 -08:00
|
|
|
with:
|
2022-03-01 13:31:37 -08:00
|
|
|
java-version: '17'
|
2022-03-01 13:12:45 -08:00
|
|
|
distribution: 'temurin'
|
2023-04-26 19:38:15 -07:00
|
|
|
cache: 'maven'
|
2022-03-01 13:12:45 -08:00
|
|
|
- name: Build with Maven
|
|
|
|
run: mvn -nsu -B install
|