mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-25 00:25:50 +00:00
commit
6f5dd6b6ba
1 changed files with 22 additions and 0 deletions
22
.github/workflows/maven.yml
vendored
Normal file
22
.github/workflows/maven.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
# This workflow will build a Java project with Maven
|
||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
|
||||
|
||||
name: build
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
java-version: [ 8, 11, 15 ]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: 'adopt'
|
||||
java-version: ${{ matrix.java-version }}
|
||||
- run: mvn -B install --no-transfer-progress --file pom.xml
|
Loading…
Reference in a new issue