mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15: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:
|
||||
runs_on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
java: [8, 11, 17]
|
||||
strategy:
|
||||
matrix:
|
||||
java: [8, 11, 17]
|
||||
|
||||
name: Build with Java ${{ matrix.java }}
|
||||
name: Build with Java ${{ matrix.java }}
|
||||
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Java ${{ matrix.java }}
|
||||
uses: actions/setup-java@4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: ${{ matrix.java }}
|
||||
- name: Set up Java ${{ matrix.java }}
|
||||
uses: actions/setup-java@4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: ${{ matrix.java }}
|
||||
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
|
|
Loading…
Reference in a new issue