Skip to content

Adding Checkstyle linter #4

Adding Checkstyle linter

Adding Checkstyle linter #4

name: Code Quality Check
on:
push:
branches:
- "master"
- "*-rc"
pull_request:
types: [opened, reopened, synchronize]
branches:
- "**"
jobs:
checkstyle-and-spotless:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch full history for accurate git commands
- name: Debug Git Output
run: |
echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
echo "Committed files in the current branch:"
git log origin/$(git rev-parse --abbrev-ref HEAD)..HEAD --name-only --pretty=format:
echo "Uncommitted files:"
git diff --name-only
echo "Staged files:"
git diff --cached --name-only
- name: Setup Java & Gradle
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- uses: actions/cache@v4
name: Cache Gradle Wrapper
id: cache-gradle-wrapper
with:
path: |
gradle/wrapper/gradle-wrapper.jar
key: gradle-wrapper-v1
- name: Get Gradle wrapper
if: steps.cache-gradle-wrapper.outputs.cache-hit != 'true'
run: |
./configure.sh
- name: Run Checkstyle
run: |
./gradlew clean rskj-core:checkstyleMain checkstyleTest
- name: Run Spotless Check
run: |
./gradlew clean rskj-core:spotlessCheck