Improve repository.
- add kokuwa checkstyle - add dependabot - add dependency documentation - add code owners - add codeql - add license badge
This commit is contained in:
parent
f92d80d1a9
commit
0f6596becc
10 changed files with 196 additions and 47 deletions
26
.github/workflows/pullrequest.yaml
vendored
Normal file
26
.github/workflows/pullrequest.yaml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: PullRequest
|
||||
|
||||
"on": pull_request
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-java@v3
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue