Skip to content

feat: new release process #74

feat: new release process

feat: new release process #74

Workflow file for this run

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/apm-pipeline-library/.github/actions/pre-commit@current
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@v3
- uses: ./.github/workflows/maven-goal
with:
command: ./mvnw ${{ matrix.goal }}
- name: Store test results
if: ${{ matrix.goal == 'test' }} && (success() || failure())
uses: actions/upload-artifact@v3
with:
name: test-results
path: '**/target/surefire-reports'
- uses: actions/upload-artifact@v3
if: contains(${{ matrix.goal }}, 'license')
with:
name: license-report
path: target/site/aggregate-third-party-report.html