Skip to content

feat: Add Spotless configuration and CI workflows #1

feat: Add Spotless configuration and CI workflows

feat: Add Spotless configuration and CI workflows #1

Workflow file for this run

name: Spotless Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Spotless Check
runs-on: ubuntu-latest
env:
GH_USERNAME: ${{ secrets.GH_USERNAME }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_REPO_NAME: ${{ secrets.GH_REPO_NAME }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Spotless Check
run: ./gradlew :spotlessCheck