Skip to content

[WIP] Feat : Add a linter to the Repositroy #4

[WIP] Feat : Add a linter to the Repositroy

[WIP] Feat : Add a linter to the Repositroy #4

Workflow file for this run

name: Code Quality Checks / ktlint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
- name: Run ktlint
run: ./gradlew ktlintCheck