forked from jooby-project/jooby
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (27 loc) · 797 Bytes
/
quick-build.yml
File metadata and controls
31 lines (27 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Quick Build
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java_version: [1.8, 11, 13]
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java_version }}
- name: Install
run: mvn clean install -DskipTests -q -pl '!docs' -s ./etc/central-settings.xml
env:
BUILD_PORT: 0
BUILD_SECURE_PORT: 0
- name: Build
run: mvn clean checkstyle:checkstyle package -pl '!docs' -P checkstyle -s ./etc/central-settings.xml
env:
BUILD_PORT: 0
BUILD_SECURE_PORT: 0