mirror of https://github.com/tikv/client-java.git
31 lines
719 B
YAML
31 lines
719 B
YAML
name: Spotbugs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request_target:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.m2/repository
|
|
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-maven-
|
|
- name: Build with Maven
|
|
run: mvn -B verify spotbugs:spotbugs -Dmaven.test.skip=true
|
|
- uses: jwgmeligmeyling/spotbugs-github-action@v1
|
|
with:
|
|
path: "**/spotbugsXml.xml"
|