Skip to content

Updated hammer tooltip + other misc changes #176

Updated hammer tooltip + other misc changes

Updated hammer tooltip + other misc changes #176

Workflow file for this run

name: Checkstyle check
on: [push, pull_request, workflow_dispatch]
jobs:
checkstyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache Gradle stuff
uses: actions/cache@v3
with:
key: gradle-${{ hashFiles('build.gradle', 'settings.gradle', 'gradle.properties', 'gradle/**') }}
restore-keys: |
gradle-${{ hashFiles('build.gradle', 'settings.gradle', 'gradle.properties', 'gradle/**') }}
gradle-
path: |
~/.gradle/caches
~/.gradle/wrapper
.gradle/quilt-loom-cache
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Run Checkstyle
run: ./gradlew -Pcheckstyle_max_warns=0 checkstyleMain
- name: Upload reports
uses: actions/upload-artifact@v2
if: always()
with:
name: Reports
path: build/reports/checkstyle/