mirror of
https://github.com/OtusTeam/Spring.git
synced 2026-05-30 10:50:42 +00:00
24 lines
412 B
YAML
24 lines
412 B
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build-app:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'temurin'
|
|
cache: maven
|
|
|
|
- name: Build application
|
|
run: |
|
|
mvn package --no-transfer-progress
|