-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (57 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
name: Run tests
on:
push:
branches: [ main, '[0-9]*.[0-9]*.x' ]
pull_request:
branches: [ main, '[0-9]*.[0-9]*.x' ]
workflow_dispatch:
env:
JDK_VERSION: 17
jobs:
static-analysis:
name: Static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ env.JDK_VERSION }}
- name: Execute check without tests
uses: gradle/gradle-build-action@v3
with:
arguments: check -x test
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ env.JDK_VERSION }}
- name: Build
uses: gradle/gradle-build-action@v3
with:
arguments: build -x test
- name: Execute tests
uses: gradle/gradle-build-action@v3
with:
arguments: test
env:
CI: Github Action
- name: Publish test report
uses: mikepenz/[email protected]
if: always() # always run even if the previous step fails
with:
check_name: JUnit Test Report
report_paths: '**/build/test-results/test/TEST-*.xml'
detailed_summary: true
- name: Test Summary
uses: actions/[email protected] # upload test results
if: always()
with:
name: test-results
path: '**/build/test-results/test/TEST-*.xml'