From cd2c737785fe77f77a6a276cdeb0b737fa304f03 Mon Sep 17 00:00:00 2001 From: Bitmap Date: Sat, 9 Mar 2024 23:35:24 +0530 Subject: [PATCH] Create kotlin_lint.yml --- .github/workflows/kotlin_lint.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/kotlin_lint.yml diff --git a/.github/workflows/kotlin_lint.yml b/.github/workflows/kotlin_lint.yml new file mode 100644 index 0000000..39d508e --- /dev/null +++ b/.github/workflows/kotlin_lint.yml @@ -0,0 +1,18 @@ +name: kotlin_lint + +on: + pull_request: + paths: + - "**/*.kt" + - ".github/workflows/kotlin_lint.yml" + +jobs: + ktlint: + runs-on: ubuntu-latest + + steps: + - name: "checkout" + uses: actions/checkout@v2 + + - name: "ktlint" + uses: "vroy/gha-kotlin-linter@v1" \ No newline at end of file