Skip to content

refactor(lsp): replace FolderConfig with LspFolderConfig using direct map access [IDE-1639] #2999

refactor(lsp): replace FolderConfig with LspFolderConfig using direct map access [IDE-1639]

refactor(lsp): replace FolderConfig with LspFolderConfig using direct map access [IDE-1639] #2999

Workflow file for this run

name: Lint
on:
push:
branches: [ master ]
pull_request:
jobs:
lint:
name: Format and Lint
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
- uses: actions/setup-java@v4
name: Setup Java
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Gradle Cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Run Spotless (format check)
run: ./gradlew spotlessCheck
- name: Run Ktlint (lint check)
run: ./gradlew ktlintCheck