generated from moderneinc/rewrite-recipe-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (47 loc) · 1.17 KB
/
ci.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
---
name: ci
on:
push:
branches:
- main
tags-ignore:
- "*"
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/ci.yml'
pull_request:
branches:
- main
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/ci.yml'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: verify
run: ./mvnw verify
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v4 #https://github.com/marketplace/actions/junit-report-action
with:
report_paths: ${{ github.workspace }}/**/target/surefire-reports/*.xml
require_passed_tests: true
- name: Upload Surefire Reports
if: always()
uses: actions/upload-artifact@v4
with:
name: surefire-reports
path: ${{ github.workspace }}/**/target/surefire-reports/**
retention-days: 30