mirror of
https://github.com/valitydev/library-parent-pom.git
synced 2024-11-06 02:45:17 +00:00
19 lines
383 B
YAML
19 lines
383 B
YAML
|
name: Build Artifact
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- '*'
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-20.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Set up Maven Central Repository
|
||
|
uses: actions/setup-java@v2
|
||
|
with:
|
||
|
java-version: '15'
|
||
|
distribution: 'adopt'
|
||
|
- name: Build package
|
||
|
run: mvn --batch-mode clean compile
|