Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
638 B
YAML
26 lines
638 B
YAML
name: PullRequest
|
|
|
|
"on": pull_request
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-java@v3.0.0
|
|
with:
|
|
distribution: temurin
|
|
java-version: 11
|
|
cache: maven
|
|
- run: mvn -B dependency:go-offline
|
|
- run: mvn -B verify
|
|
- uses: dorny/test-reporter@v1.5.0
|
|
if: failure()
|
|
with:
|
|
name: surefire
|
|
path: '**/target/surefire-reports/*.xml,**/target/invoker-reports/*.xml'
|
|
reporter: java-junit
|
|
list-suites: failed
|
|
list-tests: failed
|
|
fail-on-error: false
|