mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:35:50 +00:00
Build Commit
This commit is contained in:
parent
dda265e776
commit
cc53c6223e
1 changed files with 14 additions and 14 deletions
28
.github/workflows/build-matrix.yaml
vendored
28
.github/workflows/build-matrix.yaml
vendored
|
@ -6,21 +6,21 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs_on: ubuntu-latest
|
runs_on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
java: [8, 11, 17]
|
java: [8, 11, 17]
|
||||||
|
|
||||||
name: Build with Java ${{ matrix.java }}
|
name: Build with Java ${{ matrix.java }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Java ${{ matrix.java }}
|
- name: Set up Java ${{ matrix.java }}
|
||||||
uses: actions/setup-java@4
|
uses: actions/setup-java@4
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
|
|
||||||
- name: Build with Gradle
|
- name: Build with Gradle
|
||||||
run: ./gradlew build
|
run: ./gradlew build
|
||||||
|
|
Loading…
Reference in a new issue