Skip to content

Add format check workflow and formatting for kotlin files #1

Add format check workflow and formatting for kotlin files

Add format check workflow and formatting for kotlin files #1

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Check format
run: ./gradlew spotlessCheck