-
Notifications
You must be signed in to change notification settings - Fork 76
47 lines (42 loc) · 1.17 KB
/
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
name: test
on:
push:
branches: [ "main" ]
paths-ignore: [ '*.md', '*.asciidoc' ]
pull_request:
branches: [ "main" ]
paths-ignore: [ '*.md', '*.asciidoc' ]
permissions:
contents: read
jobs:
pre-commit:
name: Run pre-commit
runs-on: ubuntu-latest
steps:
- uses: elastic/oblt-actions/pre-commit@v1
goals:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
goal:
- 'clean install -DskipTests=true -Dmaven.javadoc.skip=true license:aggregate-third-party-report -Dlicense.excludedGroups=^co.elastic.'
- 'test'
- 'compile javadoc:javadoc'
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/maven-goal
with:
command: ./mvnw ${{ matrix.goal }}
- name: Store test results
if: matrix.goal == 'test' && (success() || failure())
uses: actions/upload-artifact@v4
with:
name: test-results
path: '**/target/surefire-reports'
- uses: actions/upload-artifact@v4
if: contains(matrix.goal, 'license')
with:
name: license-report
path: target/site/aggregate-third-party-report.html