fixing r0 to be long not int. #394
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Spotbugs | |
on: [push] | |
jobs: | |
build: | |
name: Spotbugs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Run spotbugs with Gradle | |
run: ./gradlew spotbugsMain | |
- uses: jwgmeligmeyling/spotbugs-github-action@master | |
with: | |
path: build/reports/spotbugs/main.xml |