-
Notifications
You must be signed in to change notification settings - Fork 15
57 lines (52 loc) · 1.63 KB
/
build-test.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
# This workflow will build and test a Java project with Maven
name: Test
on:
pull_request:
push:
workflow_dispatch:
jobs:
dupe_check:
name: Check for Duplicate Workflow Run
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/[email protected]
with:
concurrent_skipping: same_content_newer
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
build:
name : Build & Test
needs:
- dupe_check
if: needs.dupe_check.outputs.should_skip != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
cache: maven
- name: Build and run Tests
run: mvn clean verify
- name: Upload Test Artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: Test Results
path: |
**/target/failsafe-reports/*.xml
**/target/surefire-reports/*.xml
- name: Publish Unit Test Results
if: ${{ !cancelled() && (github.actor != 'dependabot[bot]' || (github.event_name == 'push' && !contains(github.ref, 'dependabot'))) }}
uses: EnricoMi/publish-unit-test-result-action@v2
continue-on-error: true
with:
fail_on: nothing
junit_files: |
**/target/failsafe-reports/*.xml
!**/target/failsafe-reports/failsafe-summary.xml
**/target/surefire-reports/*.xml