-
Notifications
You must be signed in to change notification settings - Fork 35
55 lines (49 loc) · 1.18 KB
/
build.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Build
on:
push:
branches:
- master
pull_request:
jobs:
checkstyle:
runs-on: ubuntu-latest
name: Checkstyle
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: ./mvnw --batch-mode install -DskipTests -Pcheckstyle,findbugs
build:
needs: checkstyle
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: ./mvnw --batch-mode verify
- name: Upload Test Results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Test Results
path: '**/*-reports/TEST-*.xml'
event_file:
name: Upload event file
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Event File
path: ${{ github.event_path }}